fragment_record_list.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. >
  6. <ListView
  7. android:id="@+id/loglistview"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_alignParentLeft="true"
  11. android:layout_alignParentTop="true"
  12. android:paddingBottom="50dp"
  13. android:clipToPadding="false"
  14. >
  15. </ListView>
  16. <RelativeLayout
  17. style="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"
  18. android:orientation="horizontal"
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:alpha="0.8"
  22. android:id="@+id/linearLayout"
  23. android:layout_alignParentBottom="true"
  24. android:layout_alignParentLeft="true"
  25. android:layout_alignParentStart="true">
  26. <ImageButton
  27. style="@android:style/Widget.DeviceDefault.ActionButton.Overflow"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:id="@+id/imageButton2"
  31. android:src="@drawable/ic_sort_by_size"
  32. android:layout_gravity="right"
  33. android:layout_alignParentTop="true"
  34. android:layout_alignParentRight="true"
  35. android:layout_alignParentEnd="true"/>
  36. <ImageButton
  37. style="@android:style/Widget.DeviceDefault.ActionButton.Overflow"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:id="@+id/imageButton"
  41. android:src="@drawable/ic_filter"
  42. android:layout_alignParentTop="true"
  43. android:layout_toLeftOf="@+id/imageButton2"/>
  44. </RelativeLayout>
  45. </RelativeLayout>