/res/layout/repositories.xml

https://bitbucket.org/saibotd/bitbeaker/ · XML · 36 lines · 30 code · 6 blank · 0 comment · 0 complexity · 2fb58b99d950268a5e3c920b3f23b558 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <ViewFlipper
  7. android:id="@+id/repos_and_favorites_view_flipper"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. >
  11. <LinearLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="fill_parent" >
  14. <ListView
  15. android:id="@+id/repositories_list"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content" >
  18. </ListView>
  19. </LinearLayout>
  20. <LinearLayout
  21. android:layout_width="fill_parent"
  22. android:layout_height="fill_parent" >
  23. <ListView
  24. android:id="@+id/favorite_repositories"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content" >
  27. </ListView>
  28. </LinearLayout>
  29. </ViewFlipper>
  30. </LinearLayout>