file_actions.xml 1009 B

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:layout_margin="@dimen/standard_margin"
  7. android:orientation="vertical">
  8. <TextView
  9. android:id="@+id/file_actions_header"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:padding="@dimen/standard_padding"
  13. android:textColor="@color/black"
  14. android:visibility="gone"
  15. />
  16. <View
  17. android:id="@+id/file_actions_header_divider"
  18. android:layout_width="match_parent"
  19. android:layout_height="2dp"
  20. android:background="@color/owncloud_blue"
  21. android:visibility="gone"
  22. />
  23. <ListView
  24. android:id="@+id/file_actions_list"
  25. android:layout_width="match_parent"
  26. android:layout_height="0dp"
  27. android:layout_weight="1"
  28. />
  29. </LinearLayout >