fragment_profile_manager.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:id="@+id/profile_manager_root_view">
  8. <ListView
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. xmlns:android="http://schemas.android.com/apk/res/android"
  12. android:id="@+id/profile_manager_listview"
  13. android:choiceMode="singleChoice"
  14. android:background="#F2F2F2"
  15. android:dividerHeight="10dp"
  16. android:divider="@android:color/transparent"
  17. android:padding="5dp"
  18. android:layout_alignParentLeft="true"
  19. android:layout_marginLeft="0dp"
  20. android:layout_alignParentTop="true"
  21. android:layout_marginTop="0dp" />
  22. <LinearLayout
  23. android:orientation="horizontal"
  24. android:layout_width="fill_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentBottom="true"
  27. android:layout_alignParentLeft="true"
  28. android:layout_alignParentStart="true"
  29. style="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"
  30. android:alpha="0.8">
  31. <Button
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:text="New Button"
  35. android:id="@+id/button"
  36. android:layout_gravity="center_vertical"
  37. style="@android:style/Widget.DeviceDefault.ActionButton.Overflow"
  38. android:textColor="@android:color/primary_text_dark" />
  39. </LinearLayout>
  40. </RelativeLayout>