60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rename"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackground"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="16dp"
|
|
android:paddingLeft="24dp"
|
|
android:paddingTop="16dp">
|
|
|
|
<com.stardust.theme.widget.ThemeColorImageViewCompat
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_ali_rename"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/text_rename"
|
|
android:textColor="@android:color/primary_text_light"
|
|
android:textSize="16sp"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/delete"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackground"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="16dp"
|
|
android:paddingLeft="24dp"
|
|
android:paddingTop="16dp">
|
|
|
|
<com.stardust.theme.widget.ThemeColorImageViewCompat
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:src="@drawable/ic_ali_delete"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/text_delete"
|
|
android:textColor="@android:color/primary_text_light"
|
|
android:textSize="16sp"/>
|
|
</LinearLayout>
|
|
</LinearLayout> |