item_settings.xml 1.29 KB
Newer Older
jyx's avatar
jyx committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_marginStart="20dp"
    android:layout_marginTop="10dp"
    android:layout_marginEnd="20dp">

    <TextView
        android:id="@+id/tv_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:drawablePadding="10dp"
        android:gravity="center_vertical"
mengcuiguang's avatar
mengcuiguang committed
16
        android:textColor="@color/color_121B32"
jyx's avatar
jyx committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
        android:textSize="16sp" />

    <ImageView
        android:id="@+id/iv_right"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_alignParentEnd="true"
        android:layout_centerVertical="true"
        android:src="@mipmap/ic_arrow_more"
        android:visibility="gone" />

    <TextView
        android:id="@+id/tv_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_centerVertical="true"
        android:visibility="gone" />

    <View
jyx's avatar
jyx committed
37 38
        style="@style/view_line_E6E6E6"
        android:layout_alignParentBottom="true" />
jyx's avatar
jyx committed
39
</RelativeLayout>