PlayerAndroid/app/src/main/res/layout/fragment_plain_controls_fra...

25 lines
853 B
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-07 16:55:11 +00:00
android:gravity="center_vertical"
2018-07-27 13:07:33 +00:00
android:orientation="vertical">
<SeekBar
2018-12-05 12:13:50 +00:00
android:id="@+id/progressSlider"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="3dp"
android:paddingStart="24dp"
2018-08-07 16:55:11 +00:00
android:paddingEnd="24dp"
2018-07-27 13:07:33 +00:00
android:progressDrawable="@drawable/color_progress_seek"
android:splitTrack="false"
tools:progress="20" />
2018-12-05 12:13:50 +00:00
<include layout="@layout/player_time" />
2018-07-27 13:07:33 +00:00
2018-12-05 12:13:50 +00:00
<include layout="@layout/media_button" />
2018-07-27 13:07:33 +00:00
2018-12-05 12:13:50 +00:00
<include layout="@layout/volume_controls" />
2018-07-27 13:07:33 +00:00
</LinearLayout>