view 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
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" android:orientation="vertical">

        <EditText
            android:id="@+id/text_edit"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:gravity="fill_horizontal"
            android:inputType="text"
            android:saveEnabled="false"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:contentDescription="@string/editTextContentDescription"
            android:textAppearance="?android:attr/textAppearanceMedium" >
             <requestFocus />
         </EditText>    

        <Button
            android:id="@+id/RenameBtn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:soundEffectsEnabled="true"
            android:tag="RENAME"
            android:text="@string/renameBtn"
            android:textSize="40dp"
            android:textStyle="bold" />

        <Button
            android:id="@+id/CancelBtn"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:tag="CANCEL"
            android:text="@string/cancelBtn"
            android:textStyle="bold" 
            android:textSize="40dp"/>

    </LinearLayout>