x7_item_choose_account.xml 993 B

123456789101112131415161718192021222324
  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:orientation="horizontal"
  5. android:gravity="center"
  6. android:descendantFocusability="blocksDescendants"
  7. android:background="@drawable/x7_gray_back_shap"
  8. android:layout_height="wrap_content">
  9. <TextView
  10. android:id="@+id/tv_account"
  11. android:layout_width="0dp"
  12. android:layout_weight="1"
  13. android:layout_height="wrap_content"
  14. android:padding="10dp"
  15. android:textColor="@color/x7_text_black0"
  16. android:textSize="14sp" />
  17. <ImageView
  18. android:id="@+id/iv_delete_account"
  19. android:layout_width="wrap_content"
  20. android:src="@drawable/x7_activity_login_delete"
  21. android:padding="5dp"
  22. android:contentDescription="TODO" android:focusable="false"
  23. android:layout_height="wrap_content" />
  24. </LinearLayout>