fedilab-Android-App/app/src/main/res/layout/activity_login.xml

205 lines
8.9 KiB
XML
Raw Normal View History

2019-09-06 17:55:14 +02:00
<?xml version="1.0" encoding="utf-8"?><!--
2017-05-05 16:36:04 +02:00
Copyright 2017 Thomas Schneider
2019-05-18 11:10:30 +02:00
This file is a part of Fedilab
2017-05-05 16:36:04 +02:00
This program is free software; you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
2019-05-18 11:10:30 +02:00
Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
2017-05-05 16:36:04 +02:00
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
2019-05-18 11:10:30 +02:00
You should have received a copy of the GNU General Public License along with Fedilab; if not,
2017-05-05 16:36:04 +02:00
see <http://www.gnu.org/licenses>.
-->
<ScrollView android:layout_width="match_parent"
2017-05-05 16:36:04 +02:00
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2018-12-10 07:34:14 +01:00
2019-09-25 15:18:41 +02:00
<LinearLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-12-10 07:34:14 +01:00
android:orientation="vertical">
2019-09-06 17:55:14 +02:00
<ImageView
2019-09-25 15:18:41 +02:00
android:id="@+id/main_logo"
2017-05-26 17:20:36 +02:00
android:layout_marginTop="20dp"
2017-07-07 19:26:26 +02:00
android:layout_width="150dp"
android:layout_gravity="center_horizontal"
2017-07-07 19:26:26 +02:00
android:layout_height="150dp"
2018-12-10 07:34:14 +01:00
android:contentDescription="@string/app_logo" />
2019-09-06 17:55:14 +02:00
<LinearLayout
2017-05-26 17:20:36 +02:00
android:layout_width="match_parent"
2019-02-13 14:32:54 +01:00
android:layout_marginLeft="@dimen/activity_vertical_margin_login"
android:layout_marginStart="@dimen/activity_vertical_margin_login"
android:layout_marginRight="@dimen/activity_vertical_margin_login"
android:layout_marginEnd="@dimen/activity_vertical_margin_login"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical"
2019-09-06 17:55:14 +02:00
android:layout_height="wrap_content">
2019-02-13 14:32:54 +01:00
<LinearLayout
android:id="@+id/step_instance"
2018-08-19 14:07:07 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-02-13 14:32:54 +01:00
android:orientation="vertical">
2019-09-06 17:55:14 +02:00
2019-06-11 19:38:26 +02:00
<com.google.android.material.textfield.TextInputLayout
2019-02-13 14:32:54 +01:00
android:id="@+id/login_instance_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:errorEnabled="true">
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<AutoCompleteTextView
android:id="@+id/login_instance"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:imeOptions="actionNext"
android:inputType="textWebEmailAddress"
android:maxLines="1"
2019-09-06 17:55:14 +02:00
android:hint="@string/instance_example" />
2019-02-13 14:32:54 +01:00
<ImageView
android:contentDescription="@string/more_information"
android:id="@+id/info_instance"
android:src="@drawable/ic_info_login"
android:layout_width="30dp"
android:layout_height="30dp" />
</LinearLayout>
2019-09-06 17:55:14 +02:00
2019-06-11 19:38:26 +02:00
</com.google.android.material.textfield.TextInputLayout>
2019-02-13 14:32:54 +01:00
<Button
android:id="@+id/connect_button"
android:textAllCaps="false"
android:drawableStart="@drawable/ic_check_circle"
android:gravity="center"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:drawablePadding="10dp"
android:paddingStart="15dp"
android:paddingEnd="20dp"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:maxLines="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="@string/connect_instance" />
<TextView
android:id="@+id/create_an_account"
android:gravity="center"
android:textSize="16sp"
2019-11-05 18:09:31 +01:00
android:drawableStart="@drawable/mastodon_icon_item"
android:drawablePadding="10dp"
android:text="@string/join_mastodon"
android:layout_gravity="center"
2019-11-05 18:09:31 +01:00
android:layout_marginTop="30dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
2019-11-05 19:51:18 +01:00
<TextView
android:id="@+id/create_an_account_peertube"
android:gravity="center"
android:textSize="16sp"
2019-11-05 18:09:31 +01:00
android:drawableStart="@drawable/peertube_icon"
android:drawablePadding="10dp"
2019-11-05 19:51:18 +01:00
android:text="@string/join_peertube"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
2019-02-13 14:32:54 +01:00
</LinearLayout>
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<LinearLayout
android:visibility="gone"
android:id="@+id/step_login_credential"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-02-13 14:32:54 +01:00
android:orientation="vertical">
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<TextView
android:layout_gravity="center"
android:layout_margin="10dp"
android:textSize="16sp"
2019-11-07 17:52:12 +01:00
android:textColor="?colorAccent"
2019-02-13 14:32:54 +01:00
android:id="@+id/instance_chosen"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
2019-09-06 17:55:14 +02:00
2018-12-11 19:17:14 +01:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-12-11 19:17:14 +01:00
android:orientation="horizontal">
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<EditText
android:id="@+id/login_uid"
2018-12-11 19:17:14 +01:00
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:maxLines="1"
2019-02-13 14:32:54 +01:00
android:inputType="textEmailAddress"
2019-09-06 17:55:14 +02:00
android:hint="@string/username" />
2018-12-11 19:17:14 +01:00
</LinearLayout>
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<LinearLayout
2019-02-02 14:53:08 +01:00
android:layout_width="match_parent"
2019-02-13 14:32:54 +01:00
android:layout_height="wrap_content"
android:orientation="horizontal">
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<EditText
2019-09-06 17:55:14 +02:00
android:id="@+id/login_passwd"
2019-02-13 14:32:54 +01:00
android:inputType="textPassword"
android:hint="@string/password"
android:maxLines="1"
android:layout_width="0dp"
android:layout_weight="1"
2019-09-06 17:55:14 +02:00
android:layout_height="wrap_content" />
2019-02-13 14:32:54 +01:00
</LinearLayout>
2019-09-06 17:55:14 +02:00
2018-12-11 19:17:14 +01:00
<TextView
2019-02-13 14:32:54 +01:00
android:visibility="gone"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:id="@+id/login_issue"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
2019-09-06 17:55:14 +02:00
2019-02-13 14:32:54 +01:00
<Button
android:id="@+id/login_button"
2018-12-11 19:17:14 +01:00
android:textAllCaps="false"
2019-02-13 14:32:54 +01:00
android:drawableStart="@drawable/mastodon_icon"
2018-12-11 19:17:14 +01:00
android:gravity="center"
android:layout_gravity="center"
2019-02-13 14:32:54 +01:00
android:layout_marginTop="20dp"
android:drawablePadding="10dp"
android:paddingStart="15dp"
android:paddingEnd="20dp"
android:paddingTop="12dp"
android:paddingBottom="12dp"
2018-12-11 19:17:14 +01:00
android:maxLines="1"
2019-02-13 14:32:54 +01:00
android:layout_width="wrap_content"
2018-12-11 19:17:14 +01:00
android:layout_height="wrap_content"
2019-02-13 14:32:54 +01:00
android:textSize="20sp"
android:text="@string/login" />
2018-12-11 19:17:14 +01:00
</LinearLayout>
</LinearLayout>
2017-05-05 16:36:04 +02:00
</LinearLayout>
</ScrollView>