aboutsummaryrefslogtreecommitdiffstats
path: root/libs/fullscreenvideoview/src/main/res/layout/view_videocontrols.xml
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fullscreenvideoview/src/main/res/layout/view_videocontrols.xml')
-rw-r--r--libs/fullscreenvideoview/src/main/res/layout/view_videocontrols.xml82
1 files changed, 82 insertions, 0 deletions
diff --git a/libs/fullscreenvideoview/src/main/res/layout/view_videocontrols.xml b/libs/fullscreenvideoview/src/main/res/layout/view_videocontrols.xml
new file mode 100644
index 000000000..8c8b53edf
--- /dev/null
+++ b/libs/fullscreenvideoview/src/main/res/layout/view_videocontrols.xml
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout
+ android:id="@+id/rel_videocontrols"
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="0dp"
+ android:background="#80cccccc">
+
+ <ImageButton
+ android:id="@+id/vcv_img_play"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_centerVertical="true"
+ android:layout_marginStart="0dp"
+ android:layout_marginLeft="0dp"
+ android:layout_marginTop="0dp"
+ android:layout_marginEnd="0dp"
+ android:layout_marginRight="0dp"
+ android:layout_marginBottom="0dp"
+ android:background="@drawable/fvl_selector_play" />
+
+ <TextView
+ android:id="@+id/vcv_txt_elapsed"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_toRightOf="@+id/vcv_img_play"
+ android:text="00:00"
+ android:textColor="@android:color/black" />
+
+ <ImageButton
+ android:id="@+id/vcv_img_fullscreen"
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:layout_marginStart="0dp"
+ android:layout_marginLeft="0dp"
+ android:layout_marginTop="0dp"
+ android:layout_marginEnd="0dp"
+ android:layout_marginRight="0dp"
+ android:layout_marginBottom="0dp"
+ android:background="@drawable/fvl_selector_fullscreen" />
+
+ <TextView
+ android:id="@+id/vcv_txt_total"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_marginRight="5dp"
+ android:layout_toLeftOf="@+id/vcv_img_fullscreen"
+ android:text="00:00"
+ android:textColor="@android:color/black" />
+
+ <SeekBar
+ android:id="@+id/vcv_seekbar"
+ style="@android:style/Widget.ProgressBar.Horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_margin="2dp"
+ android:layout_marginStart="5dp"
+ android:layout_marginLeft="5dp"
+ android:layout_marginTop="5dp"
+ android:layout_marginEnd="5dp"
+ android:layout_marginRight="5dp"
+ android:layout_marginBottom="5dp"
+ android:layout_toLeftOf="@+id/vcv_txt_total"
+ android:layout_toRightOf="@+id/vcv_txt_elapsed"
+ android:indeterminateDrawable="@drawable/fvl_progress"
+ android:maxHeight="13dp"
+ android:minHeight="13dp"
+ android:paddingLeft="16dp"
+ android:paddingRight="16dp"
+ android:progressDrawable="@drawable/fvl_progress"
+ android:thumb="@drawable/fvl_control_normal"
+ android:thumbOffset="16dp" />
+
+
+</RelativeLayout> \ No newline at end of file