/res/layout/changeset.xml

https://bitbucket.org/saibotd/bitbeaker/ · XML · 32 lines · 25 code · 7 blank · 0 comment · 0 complexity · cface9d2d45b1eb39a56f4d132be9f5f MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:id="@+id/changesetRootLayout"
  5. android:orientation="vertical"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <ViewFlipper
  9. android:id="@+id/changeset_view_flipper"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent">
  12. <ListView
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:id="@+id/changeset_data">
  16. </ListView>
  17. <ListView
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:id="@+id/changeset_comments"
  21. android:padding="4dip"
  22. android:overScrollFooter="@android:color/transparent">
  23. </ListView>
  24. </ViewFlipper>
  25. </LinearLayout>