| <?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="match_parent" |
| android:orientation="vertical"> |
| |
| <EditText |
| android:id="@+id/password" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:hint="@string/prompt_password" |
| <error descr="Invalid resource type, expected integer value">android:imeActionId="@+id/login"</error> |
| android:imeActionLabel="@string/action_sign_in_short" |
| android:imeOptions="actionUnspecified" |
| android:inputType="textPassword" |
| android:maxLines="1" |
| android:singleLine="true"/> |
| |
| <EditText |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| <error descr="\"mmmm\" is not an integer">android:imeActionId="mmmm"</error> |
| android:imeActionLabel="@string/action_sign_in_short"/> |
| |
| <EditText |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:imeActionId="6" |
| android:imeActionLabel="@string/action_sign_in_short"/> |
| |
| </LinearLayout> |