23 lines
722 B
XML
23 lines
722 B
XML
|
<?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">
|
||
|
<ImageView
|
||
|
android:id="@+id/ivIcon"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
/>
|
||
|
<TextView
|
||
|
android:id="@+id/tvName"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="主播"
|
||
|
android:paddingLeft="13dp"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="10sp"
|
||
|
/>
|
||
|
|
||
|
|
||
|
</FrameLayout>
|