choice_list_item_layout.xml 824 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:gravity="center_vertical"
  6. android:minHeight="60dp">
  7. <TextView
  8. android:id="@+id/textView"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:textColor="#ffffff"
  12. android:textSize="@dimen/textsize_18"
  13. android:layout_marginLeft="20dp"
  14. android:layout_weight="1"/>
  15. <CheckBox
  16. android:id="@+id/checkBox"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_marginRight="10dp"
  20. android:focusable="false"
  21. android:clickable="false"/>
  22. </LinearLayout>