mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
175 lines
No EOL
6.5 KiB
XML
175 lines
No EOL
6.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
ownCloud Android client application
|
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
|
Copyright (C) 2012-2013 ownCloud Inc.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2,
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:padding="8dip"
|
|
android:fillViewport="true"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dip"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:focusable="true"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:src="@drawable/logo" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<EditText
|
|
android:id="@+id/hostUrlInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/auth_host_url"
|
|
android:inputType="textUri" >
|
|
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
<ImageView
|
|
android:id="@+id/refreshButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right|center_vertical"
|
|
android:src="@drawable/ic_action_refresh_black"
|
|
android:visibility="invisible" />
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/server_status_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
android:drawableLeft="@android:drawable/stat_notify_sync"
|
|
android:drawablePadding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/auth_testing_connection" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/oauth_onOff_check"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="false"
|
|
android:onClick="onCheckClick"
|
|
android:text="@string/oauth_check_onoff"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:visibility="gone" />
|
|
|
|
<EditText
|
|
android:id="@+id/oAuthEntryPoint_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="textUri"
|
|
android:singleLine="true"
|
|
android:text="@string/oauth2_url_endpoint_auth"
|
|
android:visibility="gone" >
|
|
</EditText>
|
|
|
|
<EditText
|
|
android:id="@+id/oAuthEntryPoint_2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="textUri"
|
|
android:singleLine="true"
|
|
android:text="@string/oauth2_url_endpoint_access"
|
|
android:visibility="gone" />
|
|
|
|
<EditText
|
|
android:id="@+id/account_username"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/auth_username"
|
|
android:inputType="textNoSuggestions" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<EditText
|
|
android:id="@+id/account_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/auth_password"
|
|
android:inputType="textPassword" />
|
|
|
|
<ImageView
|
|
android:id="@+id/viewPasswordButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right|center_vertical"
|
|
android:onClick="onViewPasswordClick"
|
|
android:src="@android:drawable/ic_menu_view"
|
|
android:visibility="invisible" />
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/auth_status_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
android:drawableLeft="@android:drawable/stat_notify_sync"
|
|
android:drawablePadding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/auth_unauthorized" />
|
|
|
|
<Button
|
|
android:id="@+id/buttonOK"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:enabled="false"
|
|
android:onClick="onOkClick"
|
|
android:text="@string/setup_btn_connect"
|
|
android:textColor="@android:color/black" />
|
|
|
|
<Button
|
|
android:id="@+id/account_register"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/transparent"
|
|
android:textColor="#0000FF"
|
|
android:onClick="onRegisterClick"
|
|
android:paddingBottom="5dp"
|
|
android:paddingTop="5dp"
|
|
android:text="@string/auth_register"
|
|
/>
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |