1
0
mirror of https://github.com/etesync/android synced 2025-03-12 21:46:08 +00:00
etesync-android/app/src/main/res/layout/login_credentials_fragment.xml

80 lines
2.9 KiB
XML
Raw Normal View History

2016-01-15 00:07:56 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright © 2013 2016 Ricki Hirner (bitfire web engineering).
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the GNU Public License v3.0
~ which accompanies this distribution, and is available at
~ http://www.gnu.org/licenses/gpl.html
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2016-03-24 16:43:35 +00:00
xmlns:tools="http://schemas.android.com/tools"
2016-01-15 00:07:56 +00:00
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_margin="@dimen/activity_margin">
<LinearLayout
android:id="@+id/login_type_url_details"
2016-01-15 00:07:56 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2016-01-15 00:07:56 +00:00
<TextView
2016-01-15 00:07:56 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/login_type_headline"
android:text="@string/login_enter_service_details"
android:layout_marginBottom="14dp"/>
2016-01-15 00:07:56 +00:00
<TextView
2016-01-15 00:07:56 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/login_service_details_description"
android:layout_marginBottom="14dp"/>
2016-01-15 00:07:56 +00:00
<EditText
android:id="@+id/user_name"
2016-01-15 00:07:56 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/login_email_address"
android:inputType="textEmailAddress"/>
<com.etesync.syncadapter.ui.widget.EditPassword
android:id="@+id/url_password"
2016-01-15 00:07:56 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/login_password"/>
2016-01-15 00:07:56 +00:00
</LinearLayout>
2016-01-15 00:07:56 +00:00
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/stepper_nav_bar">
<Button
android:id="@+id/create_account"
android:layout_width="0dp"
android:layout_weight="1"
android:text="@string/login_signup"
style="@style/stepper_nav_button"/>
<Space
2016-01-15 00:07:56 +00:00
android:layout_width="0dp"
android:layout_weight="1"
style="@style/stepper_nav_button"/>
<Button
android:id="@+id/login"
2016-01-15 00:07:56 +00:00
android:layout_width="0dp"
android:layout_weight="1"
android:text="@string/login_login"
2016-01-15 00:07:56 +00:00
style="@style/stepper_nav_button"/>
</LinearLayout>
</LinearLayout>