mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
29 lines
963 B
XML
Vendored
29 lines
963 B
XML
Vendored
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/frameLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ItemDetailActivity"
|
|
tools:ignore="MergeRootFrame" >
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/passwordField"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Enter your password" />
|
|
|
|
<EditText
|
|
android:id="@+id/passwordCaption"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="textPassword" />
|
|
|
|
<Button
|
|
android:id="@+id/loginButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Sign in" />
|
|
|
|
</FrameLayout> |