36 lines
1.0 KiB
XML
36 lines
1.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/btn_admin"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="60dp"
|
||
|
android:background="@color/white"
|
||
|
android:paddingLeft="15dp"
|
||
|
android:paddingRight="15dp"
|
||
|
>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerVertical="true"
|
||
|
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>
|