samples_list.xml 788 B

12345678910111213141516171819202122232425
  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:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <ImageView
  7. android:id="@+id/imageView"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:src="@drawable/logo_large" />
  11. <ListView
  12. android:id="@android:id/list"
  13. android:layout_width="match_parent"
  14. android:layout_height="0dip"
  15. android:layout_weight="1" />
  16. <TextView
  17. android:id="@android:id/empty"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="No activities" />
  21. </LinearLayout>