2018-09-01 11:12:59 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-09-01 11:12:59 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/set_as_cover_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2021-05-22 11:55:05 -04:00
|
|
|
android:foreground="@drawable/selectable_item_background"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2020-04-18 14:47:22 -04:00
|
|
|
app:srcCompat="@drawable/ic_photo_24dp"
|
2020-05-01 08:49:45 -04:00
|
|
|
app:tint="?attr/colorOnBackground" />
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="32dp"
|
2020-05-01 08:49:45 -04:00
|
|
|
android:text="@string/set_as_cover"
|
|
|
|
android:textColor="?attr/colorOnBackground" />
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/share_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2021-05-22 11:55:05 -04:00
|
|
|
android:foreground="@drawable/selectable_item_background"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2020-04-18 14:47:22 -04:00
|
|
|
app:srcCompat="@drawable/ic_share_24dp"
|
2020-05-01 08:49:45 -04:00
|
|
|
app:tint="?attr/colorOnBackground" />
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="32dp"
|
2020-05-01 08:49:45 -04:00
|
|
|
android:text="@string/action_share"
|
|
|
|
android:textColor="?attr/colorOnBackground" />
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/save_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2021-05-22 11:55:05 -04:00
|
|
|
android:foreground="@drawable/selectable_item_background"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2020-05-23 18:28:28 -04:00
|
|
|
app:srcCompat="@drawable/ic_get_app_24dp"
|
2020-05-01 08:49:45 -04:00
|
|
|
app:tint="?attr/colorOnBackground" />
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="32dp"
|
2020-05-01 08:49:45 -04:00
|
|
|
android:text="@string/action_save"
|
|
|
|
android:textColor="?attr/colorOnBackground" />
|
2018-09-01 11:12:59 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|