2022-10-26 14:45:39 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:ignore="MissingDefaultResource">
|
2023-03-17 10:19:35 +08:00
|
|
|
|
2023-03-23 16:36:16 +08:00
|
|
|
<FrameLayout
|
2022-10-26 14:45:39 +08:00
|
|
|
android:id="@+id/wish_list_layout"
|
2023-03-23 16:36:16 +08:00
|
|
|
android:layout_width="66dp"
|
|
|
|
android:layout_height="20dp"
|
2022-10-26 14:45:39 +08:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="visible">
|
|
|
|
|
2023-03-23 16:36:16 +08:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/wish_list_layout2"
|
|
|
|
android:layout_width="66dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal" />
|
|
|
|
|
2022-10-26 14:45:39 +08:00
|
|
|
<ImageView
|
2023-03-23 16:36:16 +08:00
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="6dp"
|
2022-10-26 14:45:39 +08:00
|
|
|
android:src="@mipmap/live_icon_seat" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/wish_list"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="20dp"
|
2023-03-23 16:36:16 +08:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="20dp"
|
2022-10-26 14:45:39 +08:00
|
|
|
android:layout_marginEnd="6dp"
|
2023-03-17 10:19:35 +08:00
|
|
|
android:ellipsize="end"
|
2022-10-26 14:45:39 +08:00
|
|
|
android:gravity="center"
|
2023-03-17 10:19:35 +08:00
|
|
|
android:maxLength="7"
|
2022-10-26 14:45:39 +08:00
|
|
|
android:text="@string/noble_seat"
|
2023-03-17 10:19:35 +08:00
|
|
|
android:textColor="#FFFFFF"
|
2022-10-26 14:45:39 +08:00
|
|
|
android:textSize="10sp" />
|
|
|
|
|
2023-03-23 16:36:16 +08:00
|
|
|
</FrameLayout>
|
2022-10-26 14:45:39 +08:00
|
|
|
</LinearLayout>
|