mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 19:42:17 +02:00
119 lines
3.4 KiB
XML
119 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:orientation="vertical"
|
|
>
|
|
<TextView
|
|
android:id="@+id/authentication_subtitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/authentication_unencrypted_warning"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#ff0000"
|
|
android:layout_marginBottom="10dp"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/authentication_username_label"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
/>
|
|
<EditText
|
|
android:id="@+id/authentication_username"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/authentication_password_label"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:layout_marginTop="5dp"
|
|
/>
|
|
<EditText
|
|
android:id="@+id/authentication_password"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:password="true"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/network_authentication_error"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:textColor="#ff0000"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="5dp"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/authentication_error"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:textColor="#ff0000"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="5dp"
|
|
/>
|
|
<LinearLayout
|
|
android:id="@+id/authentication_signup_box"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp"
|
|
>
|
|
<TextView
|
|
android:id="@+id/authentication_signup"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:textColor="#0000ff"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="@drawable/link"
|
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="20dp"
|
|
android:paddingBottom="10dp"
|
|
android:orientation="horizontal"
|
|
>
|
|
<Button
|
|
android:id="@+id/authentication_ok_button"
|
|
android:layout_width="fill_parent"
|
|
android:minWidth="75dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:singleLine="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
/>
|
|
<Button
|
|
android:id="@+id/authentication_cancel_button"
|
|
android:layout_width="fill_parent"
|
|
android:minWidth="75dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:singleLine="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView>
|