pandorapan/common/src/main/res/layout/hint_custom_popup.xml

72 lines
2.6 KiB
XML
Raw Normal View History

<?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"
2023-10-09 16:27:54 +08:00
android:layout_width="290dp"
android:layout_height="200dp"
app:cardCornerRadius="18dp"
app:cardElevation="16dp">
<LinearLayout
2023-03-31 16:44:22 +08:00
android:layout_width="270dp"
android:layout_height="180dp"
android:gravity="center_horizontal"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:gravity="center"
android:text="@string/ultra_hd_hint"
android:textColor="#161616"
android:textSize="16sp" />
<TextView
android:id="@+id/contest"
android:layout_width="match_parent"
2023-03-31 16:44:22 +08:00
android:layout_height="90dp"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp"
2023-03-31 16:44:22 +08:00
android:gravity="center"
android:text="@string/ultra_hd_hint2"
android:textColor="#999999"
android:textSize="12sp" />
<LinearLayout
android:layout_width="match_parent"
2023-10-10 17:03:51 +08:00
android:layout_height="wrap_content"
android:gravity="center_vertical">
<TextView
android:id="@+id/live_open_cancel"
2023-10-10 17:03:51 +08:00
android:layout_width="120dp"
android:layout_height="40dp"
android:layout_marginStart="10dp"
android:background="@drawable/backgroud_live_open_lfet"
android:gravity="center"
2023-10-10 17:03:51 +08:00
android:paddingStart="5dp"
android:paddingEnd="5dp"
android:text="@string/back"
android:textColor="#FFC621"
android:textSize="14sp" />
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/live_open_ok"
2023-10-10 17:03:51 +08:00
android:layout_width="120dp"
android:layout_height="40dp"
android:layout_marginEnd="10dp"
android:background="@drawable/backgroud_live_open_right"
android:gravity="center"
android:text="@string/stick_to_choice"
android:textColor="@color/white"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>