slide_view_merge.xml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <merge xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <LinearLayout
  6. android:id="@+id/view_content"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:orientation="horizontal"></LinearLayout>
  10. <RelativeLayout
  11. android:id="@+id/holder"
  12. android:layout_width="120dp"
  13. android:layout_height="match_parent"
  14. android:background="@color/btn_user_del"
  15. android:clickable="true">
  16. <TextView
  17. android:id="@+id/delete"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_centerInParent="true"
  21. android:drawableLeft="@mipmap/del_icon_normal"
  22. android:gravity="center"
  23. android:text="删除"
  24. android:textColor="@color/floralwhite" />
  25. </RelativeLayout>
  26. </merge>