files_move.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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:background="@color/background_color"
  6. android:orientation="vertical" >
  7. <FrameLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="0dip"
  10. android:layout_weight="1"
  11. android:id="@+id/fragment_container" />
  12. <LinearLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:gravity="center"
  16. android:orientation="horizontal" >
  17. <Button
  18. android:id="@+id/move_files_btn_cancel"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="1"
  22. android:text="@string/common_cancel" />
  23. <Button
  24. android:id="@+id/move_files_btn_choose"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_weight="1"
  28. android:text="@string/move_choose_button_text" />
  29. </LinearLayout>
  30. </LinearLayout>