fragment_profile_manager.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  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. <com.fortysevendeg.android.swipelistview.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: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. android:descendantFocusability="blocksDescendants"
  23. swipe:swipeFrontView="@+id/profile_manager_item_front"
  24. swipe:swipeBackView="@+id/profile_manager_item_back"
  25. swipe:swipeMode="both"/>
  26. </RelativeLayout>