fileexplorer.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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:orientation="horizontal"
  6. android:background="@color/white">
  7. <ImageView
  8. android:id="@+id/fileIcon"
  9. android:layout_width="48dp"
  10. android:layout_height="48dp"
  11. android:layout_margin="5dp" />
  12. <LinearLayout
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_margin="5dp"
  16. android:orientation="vertical" >
  17. <TextView
  18. android:id="@+id/fileTitle"
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:textColor="#FFFFFFFF"
  22. android:textSize="20dip" />
  23. <TextView
  24. android:id="@+id/fileInfo"
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:textColor="#FFaaaaaa"
  28. android:textSize="16dip" />
  29. </LinearLayout>
  30. </LinearLayout>