2017-10-04 15:33:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:padding="@dimen/spacing_medium">
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/editText"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
<TextView
|
2018-09-20 10:07:43 +00:00
|
|
|
android:id="@+id/passwordTitleTextView"
|
2017-10-04 15:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/password"
|
|
|
|
|
android:layout_marginTop="@dimen/content_section_spacing"/>
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/passwordEditText"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
</LinearLayout>
|