64 lines
2.2 KiB
XML
64 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/transparent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/dialog_content_bg"
|
|
android:gravity="center"
|
|
android:minHeight="116dp">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="25dp"
|
|
android:layout_marginTop="44dp"
|
|
android:layout_marginRight="25dp"
|
|
android:layout_marginBottom="44dp"
|
|
android:text="是否清空所有历史?"
|
|
android:textColor="@color/color_1F1C1F"
|
|
android:textSize="17sp" />
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="54dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_left"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/dialog_left_bg"
|
|
android:gravity="center"
|
|
android:text="取消"
|
|
android:textColor="#ffa6a6a6"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_right"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/dialog_right_bg"
|
|
android:gravity="center"
|
|
android:text="确定"
|
|
android:textColor="@color/color_FF333333"
|
|
android:textSize="17sp" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</layout> |