mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-14 22:42:49 +01:00
54 lines
2.0 KiB
XML
54 lines
2.0 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/set_as_cover"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:drawablePadding="32dp"
|
|
android:gravity="center_vertical"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:paddingHorizontal="16dp"
|
|
android:foreground="?attr/selectableItemBackground"
|
|
android:text="@string/set_as_cover"
|
|
android:textColor="?attr/colorOnBackground"
|
|
app:drawableStartCompat="@drawable/ic_photo_24dp"
|
|
app:drawableTint="?attr/colorOnBackground" />
|
|
|
|
<TextView
|
|
android:id="@+id/share"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:drawablePadding="32dp"
|
|
android:gravity="center_vertical"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:paddingHorizontal="16dp"
|
|
android:foreground="?attr/selectableItemBackground"
|
|
android:text="@string/action_share"
|
|
android:textColor="?attr/colorOnBackground"
|
|
app:drawableStartCompat="@drawable/ic_share_24dp"
|
|
app:drawableTint="?attr/colorOnBackground" />
|
|
|
|
<TextView
|
|
android:id="@+id/save"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:drawablePadding="32dp"
|
|
android:gravity="center_vertical"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:paddingHorizontal="16dp"
|
|
android:foreground="?attr/selectableItemBackground"
|
|
android:text="@string/action_save"
|
|
android:textColor="?attr/colorOnBackground"
|
|
app:drawableStartCompat="@drawable/ic_save_24dp"
|
|
app:drawableTint="?attr/colorOnBackground" />
|
|
|
|
</LinearLayout>
|