activity_customize_fields.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context=".CustomizeFieldsActivity" >
  6. <com.usai.apex.DragListView
  7. android:id="@+id/drag_list"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:layout_above="@+id/foot"
  11. android:cacheColorHint="#00000000" />
  12. <LinearLayout
  13. android:id="@+id/foot"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_alignParentBottom="true"
  17. android:layout_alignParentLeft="true"
  18. android:orientation="horizontal" >
  19. <Button
  20. android:id="@+id/btncancel"
  21. style="?android:attr/buttonStyleSmall"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_weight="1"
  25. android:text="@android:string/cancel" />
  26. <Button
  27. android:id="@+id/btnok"
  28. style="?android:attr/buttonStyleSmall"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_weight="1"
  32. android:text="@android:string/ok" />
  33. </LinearLayout>
  34. </RelativeLayout>