97 lines
3.8 KiB
XML
97 lines
3.8 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="274dp"
|
|
android:layout_height="168.5dp"
|
|
app:cardCornerRadius="15dp"
|
|
app:cardElevation="16dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/complete_information_hint"
|
|
android:layout_width="124.5dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25.5dp"
|
|
android:layout_marginTop="30.5dp"
|
|
android:text="@string/complete_information_hint"
|
|
android:textColor="#333333"
|
|
android:textSize="14sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
<!--表情-->
|
|
<ImageView
|
|
android:id="@+id/expression"
|
|
android:layout_width="44dp"
|
|
android:layout_height="44dp"
|
|
android:layout_marginTop="22.5dp"
|
|
android:src="@mipmap/icon_smiling_face" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="2dp">
|
|
|
|
<TextView
|
|
android:id="@+id/complete_information2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="7dp"
|
|
android:text="@string/complete_information_hint2"
|
|
android:textColor="#666666"
|
|
android:textSize="10sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/icon_live"
|
|
android:layout_width="34dp"
|
|
android:layout_height="10dp"
|
|
android:layout_gravity="bottom"
|
|
android:layout_marginStart="2dp"
|
|
android:src="@mipmap/icon_live" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/live_open_cancel"
|
|
android:layout_width="111dp"
|
|
android:layout_height="37dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginStart="16dp"
|
|
android:background="@drawable/backgroud_live_open_lfet"
|
|
android:gravity="center"
|
|
android:text="@string/cancel"
|
|
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|center_vertical"
|
|
android:layout_marginEnd="16dp"
|
|
android:background="@drawable/backgroud_live_open_right"
|
|
android:gravity="center"
|
|
android:text="@string/confirm"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView> |