pdlivexp/common/src/main/res/layout/replacement_hint_custom_popup.xml
2023-10-12 14:26:10 +08:00

85 lines
3.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:cardCornerRadius="18dp"
app:cardElevation="18dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="10dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="30dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/replacement_reset_confirmed"
android:textColor="#161616"
android:textSize="16sp" />
<TextView
android:id="@+id/wish_tab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="【周心願】"
android:textColor="#8E73F5"
android:textSize="16sp" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="18dp"
android:gravity="center"
android:text="@string/replacement_reset_confirmed_hint"
android:textColor="#999999"
android:textSize="14sp" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="22dp"
android:layout_marginEnd="16dp">
<TextView
android:id="@+id/live_open_cancel"
android:layout_width="100dp"
android:layout_height="36dp"
android:background="@drawable/backgroud_live_open_lfet"
android:gravity="center"
android:text="@string/replacement_reset_confirmed_sure"
android:textColor="#FFC621"
android:textSize="14sp" />
<TextView
android:id="@+id/live_open_ok"
android:layout_width="100dp"
android:layout_height="36dp"
android:layout_gravity="end"
android:background="@drawable/backgroud_live_open_right"
android:gravity="center"
android:text="@string/replacement_reset_confirmed_cancel"
android:textColor="@color/white"
android:textSize="14sp" />
</FrameLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="10dp" />
</LinearLayout>
</androidx.cardview.widget.CardView>