mihon/app/src/main/res/layout/reader_page_sheet.xml

54 lines
2.0 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-02-22 00:43:50 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2021-08-28 23:22:41 +02:00
<TextView
android:id="@+id/set_as_cover"
android:layout_width="match_parent"
android:layout_height="56dp"
2021-08-28 23:22:41 +02:00
android:drawablePadding="32dp"
android:gravity="center_vertical"
android:clickable="true"
android:focusable="true"
2021-08-28 23:22:41 +02:00
android:paddingHorizontal="16dp"
android:foreground="?attr/selectableItemBackground"
2021-08-28 23:22:41 +02:00
android:text="@string/set_as_cover"
android:textColor="?attr/colorOnBackground"
app:drawableStartCompat="@drawable/ic_photo_24dp"
app:drawableTint="?attr/colorOnBackground" />
2021-08-28 23:22:41 +02:00
<TextView
android:id="@+id/share"
android:layout_width="match_parent"
android:layout_height="56dp"
2021-08-28 23:22:41 +02:00
android:drawablePadding="32dp"
android:gravity="center_vertical"
android:clickable="true"
android:focusable="true"
2021-08-28 23:22:41 +02:00
android:paddingHorizontal="16dp"
android:foreground="?attr/selectableItemBackground"
2021-08-28 23:22:41 +02:00
android:text="@string/action_share"
android:textColor="?attr/colorOnBackground"
app:drawableStartCompat="@drawable/ic_share_24dp"
app:drawableTint="?attr/colorOnBackground" />
2021-08-28 23:22:41 +02:00
<TextView
android:id="@+id/save"
android:layout_width="match_parent"
android:layout_height="56dp"
2021-08-28 23:22:41 +02:00
android:drawablePadding="32dp"
android:gravity="center_vertical"
android:clickable="true"
android:focusable="true"
2021-08-28 23:22:41 +02:00
android:paddingHorizontal="16dp"
android:foreground="?attr/selectableItemBackground"
2021-08-28 23:22:41 +02:00
android:text="@string/action_save"
android:textColor="?attr/colorOnBackground"
app:drawableStartCompat="@drawable/ic_save_24dp"
app:drawableTint="?attr/colorOnBackground" />
</LinearLayout>