x7_item_country_code.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. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:background="@color/x7_white"
  7. android:orientation="vertical"
  8. android:paddingRight="6dp"
  9. tools:ignore="MissingDefaultResource">
  10. <View
  11. android:id="@+id/title_white_view"
  12. android:layout_width="match_parent"
  13. android:layout_height="11dp"/>
  14. <TextView
  15. android:id="@+id/tv_country_title"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:paddingTop="11dp"
  19. android:paddingBottom="5dp"
  20. android:paddingLeft="13dp"
  21. android:textColor="@color/x7_text_green"
  22. android:background="@drawable/x7_country_code_back_up"
  23. />
  24. <LinearLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:orientation="vertical"
  28. android:background="@color/x7_gray_f5f5f5"
  29. >
  30. <LinearLayout
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:paddingTop="10dp"
  34. android:paddingLeft="13dp"
  35. android:orientation="horizontal"
  36. >
  37. <TextView
  38. android:id="@+id/tv_country_city"
  39. android:layout_width="0dp"
  40. android:layout_height="wrap_content"
  41. android:layout_weight="1"
  42. android:textColor="@color/x7_text_black3" />
  43. <TextView
  44. android:id="@+id/tv_country_code"
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:layout_marginRight="13dp"
  48. android:paddingBottom="10dp"
  49. android:textColor="@color/x7_text_gray" />
  50. </LinearLayout>
  51. <View
  52. android:id="@+id/view_line_country_code"
  53. android:layout_width="match_parent"
  54. android:layout_height="0.5dp"
  55. android:layout_marginRight="13dp"
  56. android:layout_marginLeft="13dp"
  57. android:background="#eaeaea" />
  58. </LinearLayout>
  59. <View
  60. android:id="@+id/view_down"
  61. android:layout_width="match_parent"
  62. android:layout_height="10dp"
  63. android:background="@drawable/x7_country_code_back_down"
  64. android:visibility="gone"
  65. />
  66. </LinearLayout>