123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/iv_phone_group"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_margin="@dimen/space_10"
- android:src="@mipmap/main_phone_group" />
- <TextView
- android:id="@+id/tv_phone_group_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_toRightOf="@id/iv_phone_group"
- android:text="@string/phone_item_group"
- android:textColor="@color/black"
- android:textSize="@dimen/text_size_18" />
- <ImageView
- android:id="@+id/iv_phone_group_click"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="@dimen/space_20"
- android:src="@mipmap/phone_close" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/space_1"
- android:background="@color/listitem_gray" />
- </LinearLayout>
|