file_explorer.xml 737 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:background="@drawable/violet"
  7. >
  8. <!-- Current absolute path -->
  9. <TextView
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:id="@+id/mPath"
  13. android:padding="5px"
  14. android:textSize="18sp"
  15. android:textColor="@drawable/white"
  16. />
  17. <!-- Current File Explorer Hierarchy -->
  18. <ListView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:id="@android:id/list"
  22. />
  23. </LinearLayout>