diff options
| author | krasimir <krasimir@chalmers.se> | 2016-06-03 11:09:39 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2016-06-03 11:09:39 +0000 |
| commit | ce856a2d177c2339705552f5a29b8eca8de18ab9 (patch) | |
| tree | 45166c02015b7048248d12a8ab3ed886d81ebaee /src/ui/android/res/layout | |
| parent | e8fe5ad5f130864946bb5aab3c201279f042ff74 (diff) | |
added checkboxes in the Phrasebook UI
Diffstat (limited to 'src/ui/android/res/layout')
| -rw-r--r-- | src/ui/android/res/layout/checkbox_input_list_item.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui/android/res/layout/checkbox_input_list_item.xml b/src/ui/android/res/layout/checkbox_input_list_item.xml new file mode 100644 index 000000000..255d0ae8d --- /dev/null +++ b/src/ui/android/res/layout/checkbox_input_list_item.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <CheckBox + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textSize="15sp" + android:id="@+id/choice_checkbox" /> + +</LinearLayout> |
