2022-12-30 14:47:25 +08:00
|
|
|
<?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"
|
2022-12-30 14:47:25 +08:00
|
|
|
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"
|
2022-12-30 14:47:25 +08:00
|
|
|
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"
|
2022-12-30 14:47:25 +08:00
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
2023-03-31 16:44:22 +08:00
|
|
|
android:gravity="center"
|
2022-12-30 14:47:25 +08:00
|
|
|
android:text="@string/ultra_hd_hint2"
|
|
|
|
android:textColor="#999999"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2023-10-06 15:22:59 +08:00
|
|
|
android:gravity="center_vertical"
|
2022-12-30 14:47:25 +08:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/live_open_cancel"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="36dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:background="@drawable/backgroud_live_open_lfet"
|
|
|
|
android:gravity="center"
|
|
|
|
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"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="36dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
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>
|