samples_list.xml 732 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <ImageView
  8. android:id="@+id/logo"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:src="@drawable/logo_large"
  12. tools:ignore="ContentDescription" />
  13. <ListView
  14. android:id="@android:id/list"
  15. android:layout_width="match_parent"
  16. android:layout_height="0dip"
  17. android:layout_weight="1" />
  18. </LinearLayout>