pandorapan/live/src/main/res/layout/view_start_level.xml
2022-10-22 17:42:17 +08:00

166 lines
6.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="78dp"
android:layout_height="106dp">
<ImageView
android:id="@+id/banner_back"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@mipmap/start_level" />
<FrameLayout
android:id="@+id/start_context"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="23dp"
android:text="星级挑战"
android:textStyle="bold"
android:textColor="#C53F4E"
android:textSize="7sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginTop="40dp"
android:layout_marginEnd="5.67dp"
android:gravity="center_vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="3.33dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom">
<ImageView
android:id="@+id/icon_start"
android:layout_width="12dp"
android:layout_height="12dp"
android:src="@mipmap/icon_start" />
<TextView
android:id="@+id/total_star_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/total_star_value"
android:textColor="#C53F4E"
android:textSize="7.97sp" />
</LinearLayout>
<com.yunbao.common.views.weight.ProgressView
android:id="@+id/total_star_progress"
android:layout_width="match_parent"
android:layout_height="4.33dp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="1.67dp">
<TextView
android:id="@+id/current_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textColor="#FE762A"
android:textSize="6.5dp" />
<TextView
android:id="@+id/target_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/100"
android:textColor="#7A0002"
android:textSize="6.5dp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginTop="70dp"
android:layout_marginEnd="5.67dp"
android:gravity="center_vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="3.33dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom">
<ImageView
android:id="@+id/icon_start_number"
android:layout_width="12dp"
android:layout_height="12dp"
android:src="@mipmap/icon_start_number" />
<TextView
android:id="@+id/number_of_people_assisted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/number_of_people_assisted"
android:textColor="#C53F4E"
android:textSize="7.97sp" />
</LinearLayout>
<com.yunbao.common.views.weight.ProgressView
android:id="@+id/assist_progress"
android:layout_width="match_parent"
android:layout_height="4.33dp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="1.67dp">
<TextView
android:id="@+id/current_assist_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textColor="#FE762A"
android:textSize="6.5dp" />
<TextView
android:id="@+id/target_assist_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/100"
android:textColor="#7A0002"
android:textSize="6.5dp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</FrameLayout>
</RelativeLayout>