log_send_file.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:paddingLeft="8dp"
  8. android:paddingRight="8dp">
  9. <ListView android:id="@android:id/list"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. />
  13. <TextView android:id="@android:id/empty"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:background="#FF0000"
  17. android:text="No data"/>
  18. <LinearLayout
  19. android:orientation="vertical"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:gravity="bottom">
  23. <Button android:id="@+id/deleteLogHistoryButton"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:text="@string/prefs_log_delete_history_button"/>
  27. </LinearLayout>
  28. </LinearLayout>