annotate res/layout/alert_dialog_edit_node_unselect.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 <Button
fiore@0 8 android:id="@+id/unselectBtn"
fiore@0 9 android:layout_width="match_parent"
fiore@0 10 android:layout_height="wrap_content"
fiore@0 11 android:text="@string/unselectBtn"
fiore@0 12 android:textSize="40dp"
fiore@0 13 android:tag="UNSELECT"
fiore@0 14 android:textStyle="bold" />
fiore@0 15
fiore@0 16 <Button
fiore@0 17 android:id="@+id/dialogRenameBtn"
fiore@0 18 android:layout_width="match_parent"
fiore@0 19 android:layout_height="wrap_content"
fiore@0 20 android:text="@string/renameBtn"
fiore@0 21 android:tag="RENAME"
fiore@0 22 android:textStyle="bold"
fiore@0 23 android:textSize="40dp" />
fiore@0 24
fiore@0 25 <Button
fiore@0 26 android:id="@+id/dialogDeleteBtn"
fiore@0 27 android:layout_width="match_parent"
fiore@0 28 android:layout_height="wrap_content"
fiore@0 29 android:text="@string/deleteBtn"
fiore@0 30 android:tag="DELETE"
fiore@0 31 android:textStyle="bold"
fiore@0 32 android:textSize="40dp"/>
fiore@0 33 <Button
fiore@0 34 android:id="@+id/CancelBtn"
fiore@0 35 android:layout_width="match_parent"
fiore@0 36 android:layout_height="wrap_content"
fiore@0 37 android:tag="CANCEL"
fiore@0 38 android:text="@string/cancelBtn"
fiore@0 39 android:textStyle="bold" android:textSize="40dp"/>
fiore@0 40 </LinearLayout>
fiore@0 41
fiore@0 42