hnyy_user_list_item.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="40dp"
  5. android:background="@drawable/hnyy_edittext_bg"
  6. android:id="@+id/rl_item"
  7. >
  8. <TextView
  9. android:id="@+id/history_account"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_centerVertical="true"
  13. android:layout_marginLeft="20dp"
  14. android:textSize="18sp"
  15. android:textColor="@color/hnyy_text_black"
  16. />
  17. <ImageView
  18. android:id="@+id/item_close"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_alignParentRight="true"
  22. android:layout_marginRight="10dp"
  23. android:layout_centerVertical="true"
  24. android:src="@mipmap/hnyy_close"
  25. android:padding="10dp"/>
  26. <View
  27. android:layout_width="match_parent"
  28. android:layout_height="1dp"
  29. android:layout_alignParentBottom="true"
  30. android:background="@color/hnyy_deepgrey"
  31. />
  32. </RelativeLayout>