LibreTube/app/src/main/res/layout/bottom_sheet.xml

46 lines
1.5 KiB
XML
Raw Normal View History

2022-08-12 17:33:55 +05:30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-08-12 17:38:00 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2022-08-12 17:33:55 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-08-12 17:38:00 +05:30
android:orientation="vertical"
android:paddingHorizontal="7dp"
android:paddingVertical="10dp">
2022-08-12 17:33:55 +05:30
2022-08-12 17:38:00 +05:30
<TextView
2022-08-12 17:33:55 +05:30
android:id="@+id/quality"
style="@style/BottomSheetItem"
2022-08-12 17:38:00 +05:30
android:text="@string/quality"
app:drawableStartCompat="@drawable/ic_hd" />
2022-08-12 17:33:55 +05:30
2022-08-12 17:38:00 +05:30
<TextView
2022-08-12 17:33:55 +05:30
android:id="@+id/playbackSpeed"
style="@style/BottomSheetItem"
android:layout_marginTop="8dp"
2022-08-12 17:38:00 +05:30
android:text="@string/playback_speed"
app:drawableStartCompat="@drawable/ic_speed" />
2022-08-12 17:33:55 +05:30
2022-08-12 17:38:00 +05:30
<TextView
2022-08-12 17:33:55 +05:30
android:id="@+id/captions"
style="@style/BottomSheetItem"
2022-08-12 17:38:00 +05:30
android:text="@string/captions"
app:drawableStartCompat="@drawable/ic_caption" />
2022-08-12 17:33:55 +05:30
2022-08-12 17:38:00 +05:30
<TextView
2022-08-12 17:33:55 +05:30
android:id="@+id/autoplay"
style="@style/BottomSheetItem"
2022-08-12 17:38:00 +05:30
android:text="@string/player_autoplay"
app:drawableStartCompat="@drawable/ic_play" />
2022-08-12 17:33:55 +05:30
2022-08-12 17:38:00 +05:30
<TextView
2022-08-12 17:33:55 +05:30
android:id="@+id/repeatMode"
style="@style/BottomSheetItem"
2022-08-12 17:38:00 +05:30
android:text="@string/repeat_mode"
app:drawableStartCompat="@drawable/ic_repeat" />
2022-08-12 17:33:55 +05:30
2022-08-12 17:38:00 +05:30
<TextView
2022-08-14 21:23:51 +05:30
android:id="@+id/resizeMode"
2022-08-12 17:33:55 +05:30
style="@style/BottomSheetItem"
2022-08-14 21:23:51 +05:30
android:text="@string/player_resize_mode"
2022-08-12 17:38:00 +05:30
app:drawableStartCompat="@drawable/ic_aspect_ratio" />
2022-08-12 17:33:55 +05:30
</LinearLayout>