popupwindow_add.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:layout_width="180dp"
  8. android:layout_height="wrap_content"
  9. android:orientation="vertical"
  10. android:paddingRight="25dp">
  11. <RelativeLayout
  12. android:id="@+id/re_addfriends"
  13. android:layout_width="match_parent"
  14. android:layout_height="48dp"
  15. android:background="@drawable/selector_title_add_bg">
  16. <ImageView
  17. android:layout_width="30dp"
  18. android:layout_height="30dp"
  19. android:layout_alignParentLeft="true"
  20. android:layout_centerVertical="true"
  21. android:layout_marginLeft="13dp"
  22. android:src="@mipmap/user_add" />
  23. <TextView
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_centerVertical="true"
  27. android:layout_marginLeft="63dp"
  28. android:text="@string/fragment_dialog_title_add_friend"
  29. android:textColor="#fff"
  30. android:textSize="16sp" />
  31. </RelativeLayout>
  32. <View
  33. android:layout_width="match_parent"
  34. android:layout_height="0.1dp"
  35. android:background="#191B1C" />
  36. <RelativeLayout
  37. android:id="@+id/re_chatroom"
  38. android:layout_width="match_parent"
  39. android:layout_height="48dp"
  40. android:background="@drawable/selector_title_add_bg">
  41. <ImageView
  42. android:layout_width="30dp"
  43. android:layout_height="30dp"
  44. android:layout_alignParentLeft="true"
  45. android:layout_centerVertical="true"
  46. android:layout_marginLeft="13dp"
  47. android:src="@mipmap/group_add" />
  48. <TextView
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_centerVertical="true"
  52. android:layout_marginLeft="63dp"
  53. android:text="@string/fragment_dialog_title_add_group"
  54. android:textColor="#fff"
  55. android:textSize="16sp" />
  56. </RelativeLayout>
  57. <View
  58. android:layout_width="match_parent"
  59. android:layout_height="0.1dp"
  60. android:background="#191B1C" />
  61. </LinearLayout>
  62. </LinearLayout>