Mercurial > hg > ccmiandroid
annotate res/layout/selection_dialog.xml @ 1:66b3a838feca logging tip
Added logging of user interaction
author | Fiore Martin <fiore@eecs.qmul.ac.uk> |
---|---|
date | Tue, 12 Feb 2013 15:31:48 +0000 |
parents | e0ee6ac3a45f |
children |
rev | line source |
---|---|
fiore@0 | 1 <?xml version="1.0" encoding="utf-8"?> |
fiore@0 | 2 |
fiore@0 | 3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
fiore@0 | 4 android:layout_width="match_parent" |
fiore@0 | 5 android:layout_height="wrap_content" android:orientation="vertical"> |
fiore@0 | 6 |
fiore@0 | 7 <uk.ac.qmul.eecs.ccmi.accessibility.AccessibleSpinner |
fiore@0 | 8 android:id="@+id/selectionSpinner" |
fiore@0 | 9 android:layout_width="match_parent" |
fiore@0 | 10 android:layout_height="wrap_content" |
fiore@0 | 11 android:tag="SPINNER" |
fiore@0 | 12 android:textStyle="bold" |
fiore@0 | 13 android:textSize="40dp" |
fiore@0 | 14 android:contentDescription="@string/spinnerContentDescription" /> |
fiore@0 | 15 |
fiore@0 | 16 <Button |
fiore@0 | 17 android:id="@+id/selectBtn" |
fiore@0 | 18 android:layout_width="match_parent" |
fiore@0 | 19 android:layout_height="wrap_content" |
fiore@0 | 20 android:text="@string/selectBtn" |
fiore@0 | 21 android:tag="SELECT" |
fiore@0 | 22 android:textStyle="bold" |
fiore@0 | 23 android:textSize="40dp" /> |
fiore@0 | 24 <Button |
fiore@0 | 25 android:id="@+id/cancelBtn" |
fiore@0 | 26 android:layout_width="match_parent" |
fiore@0 | 27 android:layout_height="wrap_content" |
fiore@0 | 28 android:tag="CANCEL" |
fiore@0 | 29 android:text="@string/cancelBtn" |
fiore@0 | 30 android:textStyle="bold" |
fiore@0 | 31 android:textSize="40dp" /> |
fiore@0 | 32 </LinearLayout> |
fiore@0 | 33 |
fiore@0 | 34 |