2023-12-14 17:28:49 +08:00
|
|
|
<?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="218dp"
|
|
|
|
android:layout_marginStart="22dp"
|
|
|
|
android:layout_marginEnd="22dp"
|
|
|
|
android:background="@drawable/background_order_dialog"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/liberal_battle_pass"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginTop="73dp"
|
|
|
|
android:text="liberal_battle_pass2"
|
|
|
|
android:textColor="#0D21B2"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="57dp">
|
|
|
|
|
2023-12-20 15:28:41 +08:00
|
|
|
<LinearLayout
|
2023-12-14 17:28:49 +08:00
|
|
|
android:id="@+id/cancel"
|
|
|
|
android:layout_width="116dp"
|
|
|
|
android:layout_height="38dp"
|
|
|
|
android:layout_marginStart="19dp"
|
|
|
|
android:background="@mipmap/button_liberal_battle_cancel"
|
2023-12-20 15:28:41 +08:00
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:text="@string/cancel"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
2023-12-14 17:28:49 +08:00
|
|
|
|
2023-12-20 15:28:41 +08:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/liberal_battle_sure"
|
2023-12-14 17:28:49 +08:00
|
|
|
android:layout_width="116dp"
|
|
|
|
android:layout_height="38dp"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginEnd="19dp"
|
|
|
|
android:background="@mipmap/button_liberal_battle_sure"
|
2023-12-20 15:28:41 +08:00
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:text="@string/confirm"
|
|
|
|
android:textColor="#E03600"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2023-12-14 17:28:49 +08:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|