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

40 lines
1.5 KiB
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:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2019-04-04 06:07:55 +00:00
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
2018-07-27 13:07:33 +00:00
android:gravity="end"
android:orientation="vertical">
2019-04-04 06:07:55 +00:00
<FrameLayout
android:id="@+id/volumeFragmentContainer"
android:layout_width="match_parent"
android:layout_height="0dp"
2019-04-04 06:07:55 +00:00
android:layout_weight="0"
android:rotation="90"
android:visibility="gone" />
2019-07-27 05:05:52 +00:00
<androidx.appcompat.widget.AppCompatImageButton
2019-02-26 18:08:07 +00:00
android:id="@+id/playerRepeatButton"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/roundSelector"
android:padding="16dp"
android:scaleType="fitCenter"
2020-07-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_repeat"
2018-07-27 13:07:33 +00:00
tools:ignore="MissingPrefix"
2019-04-04 06:07:55 +00:00
tools:tint="@color/md_black_1000" />
2018-07-27 13:07:33 +00:00
2019-07-27 05:05:52 +00:00
<androidx.appcompat.widget.AppCompatImageButton
2019-02-26 18:08:07 +00:00
android:id="@+id/playerShuffleButton"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/roundSelector"
android:padding="16dp"
android:scaleType="fitCenter"
2020-07-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_shuffle"
2018-07-27 13:07:33 +00:00
tools:ignore="MissingPrefix"
2019-04-04 06:07:55 +00:00
tools:tint="@color/md_black_1000" />
2018-07-27 13:07:33 +00:00
</LinearLayout>