Videoplayer controls weren't visible on some api versions
This commit is contained in:
parent
c07bf6691d
commit
f25c1f80ec
|
@ -15,8 +15,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="bottom|center"
|
android:layout_gravity="bottom|center"
|
||||||
android:alpha="0"
|
android:background="@color/actionbar_gray"
|
||||||
android:background="@color/white"
|
|
||||||
android:orientation="vertical" >
|
android:orientation="vertical" >
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
|
@ -66,7 +65,10 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:layout_centerVertical="true"
|
android:layout_alignParentTop="true"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
|
android:layout_marginLeft="8dp"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
android:text="@string/position_default_label" />
|
android:text="@string/position_default_label" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
@ -74,15 +76,16 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentRight="true"
|
android:layout_alignParentRight="true"
|
||||||
android:layout_centerVertical="true"
|
android:layout_alignParentTop="true"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
|
android:layout_marginLeft="8dp"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
android:text="@string/position_default_label" />
|
android:text="@string/position_default_label" />
|
||||||
|
|
||||||
<SeekBar
|
<SeekBar
|
||||||
android:id="@+id/sbPosition"
|
android:id="@+id/sbPosition"
|
||||||
android:layout_width="0px"
|
android:layout_width="0px"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginLeft="8dp"
|
|
||||||
android:layout_marginRight="8dp"
|
|
||||||
android:layout_toLeftOf="@+id/txtvLength"
|
android:layout_toLeftOf="@+id/txtvLength"
|
||||||
android:layout_toRightOf="@+id/txtvPosition"
|
android:layout_toRightOf="@+id/txtvPosition"
|
||||||
android:max="500" />
|
android:max="500" />
|
||||||
|
|
|
@ -20,5 +20,6 @@
|
||||||
<color name="bright_blue">#33B5E5</color>
|
<color name="bright_blue">#33B5E5</color>
|
||||||
<color name="ics_gray">#858585</color>
|
<color name="ics_gray">#858585</color>
|
||||||
<color name="selection_background">#FEBB20</color>
|
<color name="selection_background">#FEBB20</color>
|
||||||
|
<color name="actionbar_gray">#DDDDDD</color>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in New Issue