2022-07-18 15:31:45 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2022-11-01 14:46:06 +08:00
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ivIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-11-01 14:46:06 +08:00
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvName"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-11-01 14:46:06 +08:00
|
|
|
android:layout_gravity="center"
|
2022-07-18 15:31:45 +08:00
|
|
|
android:paddingLeft="13dp"
|
2022-11-01 14:46:06 +08:00
|
|
|
android:text="主播"
|
2022-07-18 15:31:45 +08:00
|
|
|
android:textColor="@color/white"
|
2022-11-01 14:46:06 +08:00
|
|
|
android:textSize="10sp" />
|
2022-07-18 15:31:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|