90 lines
3.0 KiB
XML
90 lines
3.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="225dp"
|
||
|
android:layout_height="186dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginTop="35dp"
|
||
|
android:background="@drawable/bg_dialog"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingTop="45dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:hint="主播名稱"
|
||
|
android:text=""
|
||
|
android:textColor="#ff161616"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="3dp"
|
||
|
android:text="@string/live_close_follow"
|
||
|
android:textColor="@color/gray_B1B1B1"
|
||
|
android:textSize="12sp" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_marginBottom="9dp"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/btn_cancel"
|
||
|
android:layout_width="87dp"
|
||
|
android:layout_height="33dp"
|
||
|
android:layout_marginRight="6dp"
|
||
|
android:background="@mipmap/tipbox_btn_gray"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/live_close_exit"
|
||
|
android:textColor="@color/gray_B1B1B1"
|
||
|
android:textSize="13sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/btn_confirm"
|
||
|
android:layout_width="87dp"
|
||
|
android:layout_height="33dp"
|
||
|
android:layout_marginLeft="6dp"
|
||
|
android:background="@mipmap/tipbox_btn_orange"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/live_close_follow_exit"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="13sp" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||
|
android:id="@+id/avatar"
|
||
|
android:layout_width="85dp"
|
||
|
android:layout_height="85dp"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_marginTop="9dp"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:src="@mipmap/ic_launcher"
|
||
|
app:riv_border_color="@color/white"
|
||
|
app:riv_border_width="2dp"
|
||
|
app:riv_oval="true" />
|
||
|
|
||
|
</RelativeLayout>
|