fragment_profile_manager.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  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. <de.tudarmstadt.informatik.hostage.ui.swipelist.SwipeListView
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. xmlns:swipe="http://schemas.android.com/apk/res-auto"
  12. android:id="@+id/profile_manager_listview"
  13. android:choiceMode="singleChoice"
  14. android:background="#F2F2F2"
  15. android:cacheColorHint="#F2F2F2"
  16. android:dividerHeight="10dp"
  17. android:divider="@android:color/transparent"
  18. android:padding="5dp"
  19. android:layout_alignParentLeft="true"
  20. android:layout_marginLeft="0dp"
  21. android:layout_alignParentTop="true"
  22. android:layout_marginTop="0dp"
  23. swipeFrontView="@+id/swipelist_frontview"
  24. swipeBackView="@+id/swipelist_backview"
  25. swipe:swipeFrontView="@+id/swipelist_frontview"
  26. swipe:swipeBackView="@+id/swipelist_backview"
  27. swipe:swipeMode="both"/>
  28. </RelativeLayout>