12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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="wrap_content"
- android:background="@color/white"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/iv_fragment_adapter_child_item"
- android:layout_width="@dimen/space_45"
- android:layout_height="@dimen/space_45"
- android:layout_centerVertical="true"
- android:layout_marginBottom="@dimen/space_10"
- android:layout_marginLeft="@dimen/space_25"
- android:layout_marginRight="@dimen/space_10"
- android:layout_marginTop="@dimen/space_10"
- android:src="@mipmap/user_img_p" />
- <TextView
- android:id="@+id/tv_fragment_adapter_name_phone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_toRightOf="@id/iv_fragment_adapter_child_item"
- android:text="@string/setting_name_phone"
- android:textColor="@color/listitem_gray"
- android:textSize="@dimen/text_size_16" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/space_1"
- android:layout_marginLeft="@dimen/space_25"
- android:background="@color/listitem_gray" />
- </LinearLayout>
|