78 lines
2.4 KiB
XML
78 lines
2.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="@color/white"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
<include layout="@layout/view_title"/>
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/btn_user_shut_up"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="60dp"
|
||
|
android:paddingLeft="15dp"
|
||
|
android:paddingRight="15dp"
|
||
|
>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:text="@string/live_user_shut_up"
|
||
|
android:textColor="@color/textColor"
|
||
|
android:textSize="16sp"
|
||
|
/>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="16dp"
|
||
|
android:layout_height="18dp"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:src="@mipmap/icon_arrow_right"
|
||
|
/>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="1dp"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:background="@color/gray2"
|
||
|
/>
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/btn_user_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="60dp"
|
||
|
android:layout_marginTop="1dp"
|
||
|
android:paddingLeft="15dp"
|
||
|
android:paddingRight="15dp"
|
||
|
>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:text="@string/live_user_black"
|
||
|
android:textColor="@color/textColor"
|
||
|
android:textSize="16sp"
|
||
|
/>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="16dp"
|
||
|
android:layout_height="18dp"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:src="@mipmap/icon_arrow_right"
|
||
|
/>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="1dp"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:background="@color/gray2"
|
||
|
/>
|
||
|
</RelativeLayout>
|
||
|
|
||
|
</LinearLayout>
|