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"
|
2019-07-17 00:21:04 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
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"
|
2019-11-05 00:13:54 +05:30
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="12dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
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"
|
2019-11-05 00:13:54 +05:30
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:srcCompat="@drawable/ic_volume_down_white_24dp"
|
|
|
|
app:tint="?colorOnBackground" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2018-11-30 06:36:16 +05:30
|
|
|
android:id="@+id/volumeSeekBar"
|
2019-07-24 00:02:41 +05:30
|
|
|
style="@style/Widget.MaterialProgressBar.ProgressBar.Horizontal"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-17 22:31:35 +05:30
|
|
|
android:layout_weight="1"
|
2019-07-24 00:02:41 +05:30
|
|
|
android:maxHeight="2dp"
|
2019-07-27 10:35:52 +05:30
|
|
|
android:progressDrawable="@drawable/color_progress_seek"
|
2019-09-29 07:40:25 +05:30
|
|
|
tools:progress="20"
|
|
|
|
tools:progressTint="?colorControlNormal" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
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"
|
2019-11-05 00:13:54 +05:30
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="12dp"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:srcCompat="@drawable/ic_volume_up_white_24dp"
|
|
|
|
app:tint="?colorOnBackground" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|