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:app="http://schemas.android.com/apk/res-auto"
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/viewGroup"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.IconImageView
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/volumeDown"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="?roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_volume_down_white_24dp" />
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/volumeSeekBar"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-05 09:59:55 +05:30
|
|
|
android:layout_weight="1" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.IconImageView
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/volumeUp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="?roundSelector"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_volume_up_white_24dp" />
|
|
|
|
</LinearLayout>
|