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

42 lines
1.6 KiB
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:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2019-04-04 11:37:55 +05:30
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
2018-07-27 18:37:33 +05:30
android:gravity="end"
android:orientation="vertical">
2019-04-04 11:37:55 +05:30
<FrameLayout
android:id="@+id/volumeFragmentContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:rotation="90"
android:visibility="gone" />
2019-07-27 10:35:52 +05:30
<androidx.appcompat.widget.AppCompatImageButton
2019-02-26 23:38:07 +05:30
android:id="@+id/playerRepeatButton"
2018-07-27 18:37:33 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/roundSelector"
2019-04-04 11:37:55 +05:30
android:contentDescription="TODO"
2018-07-27 18:37:33 +05:30
android:padding="16dp"
android:scaleType="fitCenter"
app:srcCompat="@drawable/ic_repeat_white_24dp"
tools:ignore="MissingPrefix"
2019-04-04 11:37:55 +05:30
tools:tint="@color/md_black_1000" />
2018-07-27 18:37:33 +05:30
2019-07-27 10:35:52 +05:30
<androidx.appcompat.widget.AppCompatImageButton
2019-02-26 23:38:07 +05:30
android:id="@+id/playerShuffleButton"
2018-07-27 18:37:33 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/roundSelector"
2019-04-04 11:37:55 +05:30
android:contentDescription="TODO"
2018-07-27 18:37:33 +05:30
android:padding="16dp"
android:scaleType="fitCenter"
app:srcCompat="@drawable/ic_shuffle_white_24dp"
tools:ignore="MissingPrefix"
2019-04-04 11:37:55 +05:30
tools:tint="@color/md_black_1000" />
2018-07-27 18:37:33 +05:30
</LinearLayout>