123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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:orientation="vertical">
- <LinearLayout
- android:layout_width="180dp"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingRight="25dp">
- <RelativeLayout
- android:id="@+id/re_addfriends"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="@drawable/selector_title_add_bg">
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="13dp"
- android:src="@mipmap/user_add" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="63dp"
- android:text="@string/fragment_dialog_title_add_friend"
- android:textColor="#fff"
- android:textSize="16sp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.1dp"
- android:background="#191B1C" />
- <RelativeLayout
- android:id="@+id/re_chatroom"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="@drawable/selector_title_add_bg">
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="13dp"
- android:src="@mipmap/group_add" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="63dp"
- android:text="@string/fragment_dialog_title_add_group"
- android:textColor="#fff"
- android:textSize="16sp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.1dp"
- android:background="#191B1C" />
- </LinearLayout>
- </LinearLayout>
|