30 lines
943 B
XML
30 lines
943 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="12dip"
|
|
>
|
|
<AutoCompleteTextView
|
|
android:id="@+id/mega_user"
|
|
android:hint="@string/hint_username"
|
|
android:singleLine="true"
|
|
android:inputType="textWebEmailAddress"
|
|
|
|
android:dropDownWidth="match_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<EditText
|
|
android:id="@+id/mega_password"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textPassword"
|
|
android:text=""
|
|
android:singleLine="true"
|
|
android:hint="@string/hint_pass"
|
|
android:importantForAccessibility="no"/>
|
|
|
|
|
|
</LinearLayout> |