pdlivexp/live/src/main/res/layout/dialog_live_fans_medal.xml
2022-07-18 15:31:45 +08:00

175 lines
6.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<com.yunbao.common.custom.RatioImageView
android:layout_marginTop="37dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_medal_info"
app:ri_ratio="0.7"
>
</com.yunbao.common.custom.RatioImageView>
<LinearLayout
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical"
>
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/avatar"
android:layout_width="74dp"
android:layout_height="74dp"
android:scaleType="centerCrop"
app:riv_border_color="@color/white"
app:riv_border_width="2dp"
app:riv_oval="true"
/>
<TextView
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/live_become_fans_medal"
android:textColor="#333333"
android:textSize="16sp"
android:gravity="center"
/>
<TextView
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/live_fans_medal_pri_des"
android:textColor="#f95f1f"
android:textSize="13sp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal"
>
<LinearLayout
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
>
<FrameLayout
android:layout_width="50dp"
android:layout_height="25dp">
<ImageView
android:src="@drawable/medal_des1"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<TextView
android:id="@+id/tvMedalName"
android:gravity="center|right"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text=""
android:paddingRight="5dp"
android:textColor="@color/white"
android:textSize="8sp"
/>
</FrameLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/live_medal_des1"
android:textColor="@color/black2"
android:textSize="10sp"
/>
</LinearLayout>
<LinearLayout
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:src="@drawable/medal_des2"
android:layout_width="50dp"
android:layout_height="25dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/live_medal_des2"
android:textColor="#333333"
android:textSize="10sp"
/>
</LinearLayout>
<LinearLayout
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:src="@drawable/medal_des3"
android:layout_width="50dp"
android:layout_height="25dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/live_medal_des3"
android:textColor="#333333"
android:textSize="10sp"
/>
</LinearLayout>
<LinearLayout
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:src="@drawable/medal_des4"
android:layout_width="50dp"
android:layout_height="25dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/live_medal_des5"
android:textColor="#333333"
android:textSize="10sp"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
<Button
android:layout_gravity="bottom"
android:background="@drawable/bg_made_fans_medal"
android:id="@+id/btn_open_fans_medal"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginBottom="15dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:text="@string/live_medal_des4"
android:textSize="16sp"
/>
</FrameLayout>