item_work_view.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/ly_bottom_handler"
  4. style="@style/form_linear_customer"
  5. android:orientation="horizontal"
  6. android:paddingLeft="10dp"
  7. android:paddingRight="10dp"
  8. android:visibility="gone">
  9. <RadioButton
  10. android:id="@+id/bt_add"
  11. style="@style/from_button_base_white"
  12. android:layout_marginRight="5dp"
  13. android:layout_weight="1"
  14. android:button="@null"
  15. android:checked="false"
  16. android:drawableTop="@drawable/work_add" />
  17. <RadioButton
  18. android:id="@+id/bt_commit"
  19. style="@style/from_button_base_white"
  20. android:layout_marginRight="5dp"
  21. android:layout_weight="1"
  22. android:button="@null"
  23. android:checked="true"
  24. android:drawableTop="@drawable/work_push" />
  25. <RadioButton
  26. android:id="@+id/bt_uncommit"
  27. style="@style/from_button_base_white"
  28. android:layout_marginRight="5dp"
  29. android:layout_weight="1"
  30. android:button="@null"
  31. android:drawableTop="@drawable/work_unpush" />
  32. <RadioButton
  33. android:id="@+id/bt_update"
  34. style="@style/from_button_base_white"
  35. android:layout_weight="1"
  36. android:button="@null"
  37. android:drawableTop="@drawable/work_undata" />
  38. </LinearLayout>