pandorapan/common/src/main/res/layout/dialog_string_array.xml
2022-07-18 15:31:45 +08:00

35 lines
987 B
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="wrap_content"
android:orientation="vertical"
>
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical"
>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="8dp"
android:background="@color/gray2"
/>
<TextView
android:id="@+id/btn_cancel"
android:layout_width="match_parent"
android:layout_height="54dp"
android:background="@color/white"
android:gravity="center"
android:text="@string/cancel"
android:textColor="@color/textColor"
android:textSize="18sp"
/>
</LinearLayout>