annotate res/layout/alert_dialog_rename.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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
fiore@0 3 android:layout_width="match_parent"
fiore@0 4 android:layout_height="wrap_content" android:orientation="vertical">
fiore@0 5
fiore@0 6 <EditText
fiore@0 7 android:id="@+id/text_edit"
fiore@0 8 android:layout_width="match_parent"
fiore@0 9 android:layout_height="wrap_content"
fiore@0 10 android:ems="10"
fiore@0 11 android:gravity="fill_horizontal"
fiore@0 12 android:inputType="text"
fiore@0 13 android:saveEnabled="false"
fiore@0 14 android:scrollHorizontally="true"
fiore@0 15 android:singleLine="true"
fiore@0 16 android:contentDescription="@string/editTextContentDescription"
fiore@0 17 android:textAppearance="?android:attr/textAppearanceMedium" >
fiore@0 18 <requestFocus />
fiore@0 19 </EditText>
fiore@0 20
fiore@0 21 <Button
fiore@0 22 android:id="@+id/RenameBtn"
fiore@0 23 android:layout_width="match_parent"
fiore@0 24 android:layout_height="wrap_content"
fiore@0 25 android:soundEffectsEnabled="true"
fiore@0 26 android:tag="RENAME"
fiore@0 27 android:text="@string/renameBtn"
fiore@0 28 android:textSize="40dp"
fiore@0 29 android:textStyle="bold" />
fiore@0 30
fiore@0 31 <Button
fiore@0 32 android:id="@+id/CancelBtn"
fiore@0 33 android:layout_width="fill_parent"
fiore@0 34 android:layout_height="wrap_content"
fiore@0 35 android:tag="CANCEL"
fiore@0 36 android:text="@string/cancelBtn"
fiore@0 37 android:textStyle="bold"
fiore@0 38 android:textSize="40dp"/>
fiore@0 39
fiore@0 40 </LinearLayout>
fiore@0 41
fiore@0 42