2012-06-27 17:30:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
2012-06-27 21:39:42 +02:00
|
|
|
|
2012-06-27 17:30:54 +02:00
|
|
|
<VideoView
|
2012-06-27 21:39:42 +02:00
|
|
|
android:id="@+id/videoview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2012-08-05 16:27:10 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressIndicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="invisible"
|
|
|
|
android:indeterminateOnly="true" />
|
2012-06-27 21:39:42 +02:00
|
|
|
<!-- Mediaplayer controls -->
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/overlay"
|
|
|
|
android:layout_width="match_parent"
|
2012-06-27 17:30:54 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-06-27 21:39:42 +02:00
|
|
|
android:layout_gravity="bottom|center"
|
2012-11-24 23:34:31 +01:00
|
|
|
android:background="?attr/video_overlay_background"
|
2012-06-27 21:39:42 +02:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/playercontrol"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="clip_horizontal"
|
|
|
|
android:layout_margin="4dp" >
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/butPlay"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
2012-11-23 18:44:15 +01:00
|
|
|
android:background="?attr/borderless_button"
|
2012-11-24 23:34:31 +01:00
|
|
|
android:src="?attr/av_pause" />
|
2012-06-27 21:39:42 +02:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/butFF"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_toRightOf="@+id/butPlay"
|
2012-11-23 18:44:15 +01:00
|
|
|
android:background="?attr/borderless_button"
|
2012-11-24 23:34:31 +01:00
|
|
|
android:src="?attr/av_fast_forward" />
|
2012-06-27 21:39:42 +02:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/butRev"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_toLeftOf="@+id/butPlay"
|
2012-11-23 18:44:15 +01:00
|
|
|
android:background="?attr/borderless_button"
|
2012-11-24 23:34:31 +01:00
|
|
|
android:src="?attr/av_rewind" />
|
2012-06-27 21:39:42 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/timecontrol"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_marginBottom="4dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvPosition"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2012-08-05 14:17:07 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
2012-06-27 21:39:42 +02:00
|
|
|
android:text="@string/position_default_label" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvLength"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
2012-08-05 14:17:07 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
2012-06-27 21:39:42 +02:00
|
|
|
android:text="@string/position_default_label" />
|
2012-07-15 20:51:56 +02:00
|
|
|
|
2012-06-27 21:39:42 +02:00
|
|
|
<SeekBar
|
|
|
|
android:id="@+id/sbPosition"
|
|
|
|
android:layout_width="0px"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toLeftOf="@+id/txtvLength"
|
|
|
|
android:layout_toRightOf="@+id/txtvPosition"
|
|
|
|
android:max="500" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2012-06-27 17:30:54 +02:00
|
|
|
</FrameLayout>
|