This commit is contained in:
jinyuer
2021-04-08 17:00:34 +08:00
parent 0ee43d6300
commit c36ee02232
4 changed files with 156 additions and 8 deletions

View File

@@ -0,0 +1,53 @@
<?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="wrap_content"
android:layout_margin="8dp"
android:background="@null"
android:orientation="vertical">
<Button
android:id="@+id/btn_edit"
style="?android:attr/borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@drawable/selector_bottom_dialog_btn"
android:paddingBottom="5dp"
android:text="删除我的评论"
android:textColor="@color/darkgray"
android:textAllCaps="false"
android:textSize="12sp" />
<View
android:layout_width="match_parent"
android:layout_height="0.5dip"
android:background="@color/LightGray" />
<Button
android:id="@+id/btn_delete"
style="?android:attr/borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@drawable/selector_bottom_dialog_btn"
android:paddingBottom="5dp"
android:text="删除"
android:textColor="@color/red"
android:textAllCaps="false"
android:textSize="16sp" />
<Button
android:id="@+id/btn_cancel"
style="?android:attr/borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="15dp"
android:background="@drawable/selector_bottom_dialog_btn"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:text="取消"
android:textAllCaps="false"
android:textSize="16sp" />
</LinearLayout>