annotate res/layout/alert_dialog_edit_node_reference.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
fiore@0 8 <Button
fiore@0 9 android:id="@+id/editLabelBtn"
fiore@0 10 android:layout_width="match_parent"
fiore@0 11 android:layout_height="wrap_content"
fiore@0 12 android:text="@string/editLabelBtn"
fiore@0 13 android:tag="EDIT_LABEL"
fiore@0 14 android:textStyle="bold"
fiore@0 15 android:textSize="40dp" />
fiore@0 16
fiore@0 17 <Button
fiore@0 18 android:id="@+id/editArrowheadBtn"
fiore@0 19 android:layout_width="match_parent"
fiore@0 20 android:layout_height="wrap_content"
fiore@0 21 android:text="@string/editArrowheadBtn"
fiore@0 22 android:tag="EDIT_ARROWHEAD"
fiore@0 23 android:textStyle="bold"
fiore@0 24 android:textSize="40dp"/>
fiore@0 25 <Button
fiore@0 26 android:id="@+id/cancelBtn"
fiore@0 27 android:layout_width="match_parent"
fiore@0 28 android:layout_height="wrap_content"
fiore@0 29 android:tag="CANCEL"
fiore@0 30 android:text="@string/cancelBtn"
fiore@0 31 android:textStyle="bold" android:textSize="40dp"/>
fiore@0 32 </LinearLayout>
fiore@0 33
fiore@0 34