2023-12-18 15:18:42 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-01-05 13:57:55 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:layout_width="match_parent"
|
2024-06-25 16:52:09 +08:00
|
|
|
android:layout_height="240dp"
|
2024-06-28 17:52:41 +08:00
|
|
|
android:id="@+id/root"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:layout_marginStart="17dp"
|
|
|
|
android:layout_marginEnd="17dp"
|
|
|
|
android:background="@drawable/background_order_dialog"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/war_order_close"
|
|
|
|
android:layout_width="19dp"
|
|
|
|
android:layout_height="19dp"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginTop="14dp"
|
|
|
|
android:layout_marginEnd="14dp"
|
|
|
|
android:src="@mipmap/icon_sud_rule_close" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:text="@string/order_level"
|
|
|
|
android:textColor="#0D21B2"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<TextView
|
2023-12-20 16:26:24 +08:00
|
|
|
android:id="@+id/current"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="46dp"
|
|
|
|
android:text="Lv7"
|
2024-06-25 16:52:09 +08:00
|
|
|
android:textColor="#2439B9"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:textSize="14sp" />
|
|
|
|
|
2024-01-05 13:57:55 +08:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2023-12-18 15:18:42 +08:00
|
|
|
android:layout_width="221dp"
|
2024-01-05 13:57:55 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="7dp">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:layout_width="221dp"
|
|
|
|
android:layout_height="6dp"
|
|
|
|
android:max="100"
|
|
|
|
android:progress="10"
|
|
|
|
android:progressDrawable="@drawable/order_level_progress_bg"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2023-12-18 15:18:42 +08:00
|
|
|
|
2024-01-05 13:57:55 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/exp_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:textColor="#000"
|
2024-06-25 16:52:09 +08:00
|
|
|
android:layout_marginRight="7dp"
|
2024-01-05 13:57:55 +08:00
|
|
|
android:textSize="12sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2024-06-28 17:52:41 +08:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-01-05 13:57:55 +08:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="500/1000" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2023-12-18 15:18:42 +08:00
|
|
|
|
|
|
|
</LinearLayout>
|
2024-06-25 16:52:09 +08:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/buying_experience_point"
|
|
|
|
android:textColor="#0D21B2"
|
|
|
|
android:textSize="14sp" />
|
2023-12-18 15:18:42 +08:00
|
|
|
<LinearLayout
|
2023-12-23 09:59:30 +08:00
|
|
|
android:layout_width="match_parent"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2024-01-05 13:57:55 +08:00
|
|
|
android:layout_marginStart="15dp"
|
2024-06-25 16:52:09 +08:00
|
|
|
android:layout_marginTop="10dp"
|
2024-01-05 13:57:55 +08:00
|
|
|
android:layout_marginEnd="15dp"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="90dp"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:background="@mipmap/backgroud_tickets_plus_minus">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/sub"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
2024-06-28 17:52:41 +08:00
|
|
|
<EditText
|
2023-12-18 15:18:42 +08:00
|
|
|
android:id="@+id/tickets_plus_minus"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="2"
|
2023-12-23 09:59:30 +08:00
|
|
|
android:background="@null"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:gravity="center"
|
2023-12-18 16:53:37 +08:00
|
|
|
android:imeOptions="actionSend"
|
2024-06-28 17:52:41 +08:00
|
|
|
android:maxEms="4"
|
|
|
|
android:maxLength="4"
|
2023-12-23 09:59:30 +08:00
|
|
|
android:inputType="number"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:singleLine="true"
|
|
|
|
android:text="0"
|
|
|
|
android:textColor="#000000"
|
|
|
|
android:textSize="12dp" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/add"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/order_level_diamond"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
2024-06-28 17:52:41 +08:00
|
|
|
android:text="00 = 100"
|
2024-06-25 16:52:09 +08:00
|
|
|
android:textColor="#000000"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:textSize="11sp" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="15dp"
|
|
|
|
android:layout_height="15dp"
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:src="@mipmap/icon_diamond2" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginTop="10dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/balance_diamond"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:text="100"
|
|
|
|
android:textColor="#0D21B2"
|
|
|
|
android:textSize="11sp" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="15dp"
|
|
|
|
android:layout_height="15dp"
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:src="@mipmap/icon_diamond2" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2023-12-21 15:24:43 +08:00
|
|
|
android:id="@+id/buying_experience"
|
2023-12-18 15:18:42 +08:00
|
|
|
android:layout_width="116dp"
|
|
|
|
android:layout_height="38dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:background="@mipmap/button_buying_experience"
|
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:text="@string/buying_experience"
|
|
|
|
android:textColor="#E03600"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|