x7_dialog_choose_account.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_centerInParent="true"
  6. android:paddingBottom="10dp"
  7. android:background="@drawable/x7_popup_back">
  8. <TextView
  9. android:id="@+id/tv_choose_account_title"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_alignTop="@+id/iv_close_choose_account"
  13. android:layout_alignBottom="@+id/iv_close_choose_account"
  14. android:layout_marginLeft="10dp"
  15. android:layout_marginTop="10dp"
  16. android:gravity="center_vertical"
  17. android:text="@string/x7_choose_account"
  18. android:textColor="@color/x7_text_gray" />
  19. <ImageView
  20. android:id="@+id/iv_close_choose_account"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_alignParentRight="true"
  24. android:layout_marginTop="10dp"
  25. android:layout_marginRight="10dp"
  26. android:contentDescription="TODO"
  27. android:padding="10dp"
  28. android:src="@drawable/x7_arrow_up_green" />
  29. <ListView
  30. android:id="@+id/lv_choose_account"
  31. android:layout_width="wrap_content"
  32. android:layout_height="125dp"
  33. android:layout_below="@id/iv_close_choose_account"
  34. android:layout_marginLeft="10dp"
  35. android:layout_marginTop="12dp"
  36. android:layout_marginRight="10dp"
  37. android:divider="@null"
  38. android:dividerHeight="10dp"
  39. android:listSelector="@null"
  40. android:scrollbarStyle="insideOverlay"
  41. android:scrollbarThumbVertical="@drawable/x7_scroll_bar_shape"
  42. android:scrollbars="vertical" />
  43. </RelativeLayout>