list_project_item.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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="wrap_content"
  5. android:background="?android:selectableItemBackground">
  6. <!-- icon -->
  7. <ImageView
  8. android:id="@+id/item_icon"
  9. android:layout_width="32dp"
  10. android:layout_height="32dp"
  11. android:layout_alignParentLeft="true"
  12. android:layout_marginLeft="8dp"
  13. android:layout_marginRight="8dp"
  14. android:layout_marginTop="10dp"
  15. android:layout_marginBottom="10dp"
  16. android:layout_centerVertical="true"
  17. />
  18. <!-- title -->
  19. <TextView
  20. android:id="@+id/item_title"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_marginTop="10dp"
  24. android:layout_marginBottom="10dp"
  25. android:layout_marginRight="8dp"
  26. android:layout_toRightOf="@+id/item_icon"
  27. android:layout_centerVertical="true"
  28. android:textSize="18dp" />
  29. </RelativeLayout>