RetroMusicPlayer/app/src/main/res/layout/fragment_plain_controls_fragment.xml

25 lines
853 B
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?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 22:25:11 +05:30
android:gravity="center_vertical"
2018-07-27 18:37:33 +05:30
android:orientation="vertical">
<SeekBar
2018-12-05 17:43:50 +05:30
android:id="@+id/progressSlider"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="3dp"
android:paddingStart="24dp"
2018-08-07 22:25:11 +05:30
android:paddingEnd="24dp"
2018-07-27 18:37:33 +05:30
android:progressDrawable="@drawable/color_progress_seek"
android:splitTrack="false"
tools:progress="20" />
2018-12-05 17:43:50 +05:30
<include layout="@layout/player_time" />
2018-07-27 18:37:33 +05:30
2018-12-05 17:43:50 +05:30
<include layout="@layout/media_button" />
2018-07-27 18:37:33 +05:30
2018-12-05 17:43:50 +05:30
<include layout="@layout/volume_controls" />
2018-07-27 18:37:33 +05:30
</LinearLayout>