Mercurial > hg > ccmiandroid
annotate res/layout/alert_dialog_edit_node.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 |
fiore@0 | 4 xmlns:android="http://schemas.android.com/apk/res/android" |
fiore@0 | 5 android:layout_width="match_parent" |
fiore@0 | 6 android:layout_height="wrap_content" android:orientation="vertical"> |
fiore@0 | 7 |
fiore@0 | 8 <Button |
fiore@0 | 9 android:id="@+id/selectBtn" |
fiore@0 | 10 android:layout_width="match_parent" |
fiore@0 | 11 android:layout_height="wrap_content" |
fiore@0 | 12 android:text="@string/selectBtn" |
fiore@0 | 13 android:textSize="40dp" |
fiore@0 | 14 android:tag="SELECT" |
fiore@0 | 15 android:textStyle="bold" /> |
fiore@0 | 16 |
fiore@0 | 17 <Button |
fiore@0 | 18 android:id="@+id/dialogRenameBtn" |
fiore@0 | 19 android:layout_width="match_parent" |
fiore@0 | 20 android:layout_height="wrap_content" |
fiore@0 | 21 android:text="@string/renameBtn" |
fiore@0 | 22 android:tag="RENAME" |
fiore@0 | 23 android:textStyle="bold" |
fiore@0 | 24 android:textSize="40dp" /> |
fiore@0 | 25 |
fiore@0 | 26 <Button |
fiore@0 | 27 android:id="@+id/dialogDeleteBtn" |
fiore@0 | 28 android:layout_width="match_parent" |
fiore@0 | 29 android:layout_height="wrap_content" |
fiore@0 | 30 android:text="@string/deleteBtn" |
fiore@0 | 31 android:tag="DELETE" |
fiore@0 | 32 android:textStyle="bold" |
fiore@0 | 33 android:textSize="40dp"/> |
fiore@0 | 34 <Button |
fiore@0 | 35 android:id="@+id/CancelBtn" |
fiore@0 | 36 android:layout_width="match_parent" |
fiore@0 | 37 android:layout_height="wrap_content" |
fiore@0 | 38 android:tag="CANCEL" |
fiore@0 | 39 android:text="@string/cancelBtn" |
fiore@0 | 40 android:textStyle="bold" android:textSize="40dp"/> |
fiore@0 | 41 </LinearLayout> |
fiore@0 | 42 |
fiore@0 | 43 |