2013-05-03 12:24:20 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
2012-05-13 18:13:13 +04:00
|
|
|
ownCloud Android client application
|
2012-02-04 20:55:17 +04:00
|
|
|
|
2013-05-03 12:24:20 +04:00
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
|
|
|
Copyright (C) 2012-2013 ownCloud Inc.
|
2013-02-07 21:45:10 +04:00
|
|
|
|
2012-05-13 18:13:13 +04:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
2013-05-03 12:24:20 +04:00
|
|
|
it under the terms of the GNU General Public License version 2,
|
2013-04-17 14:26:13 +04:00
|
|
|
as published by the Free Software Foundation.
|
2012-02-04 20:55:17 +04:00
|
|
|
|
2012-05-13 18:13:13 +04:00
|
|
|
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.
|
2012-02-04 20:55:17 +04:00
|
|
|
|
2012-05-13 18:13:13 +04:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-05-03 12:24:20 +04:00
|
|
|
-->
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-05-03 12:34:25 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:fillViewport="true"
|
2013-08-23 16:31:17 +04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/scroll"
|
|
|
|
>
|
2013-05-10 18:35:01 +04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-20 15:22:17 +04:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="8dp" >
|
2013-05-10 18:35:01 +04:00
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
2013-06-26 20:50:08 +04:00
|
|
|
<Button
|
2013-07-05 13:52:24 +04:00
|
|
|
android:id="@+id/centeredRefreshButton"
|
2013-06-26 20:50:08 +04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2013-07-09 12:19:08 +04:00
|
|
|
android:layout_marginBottom="10dp"
|
2013-07-05 13:52:24 +04:00
|
|
|
android:onClick="onRefreshClick"
|
2013-06-26 20:50:08 +04:00
|
|
|
android:text="@string/auth_check_server"
|
|
|
|
android:visibility="gone" />
|
2013-08-17 20:39:05 +04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/auth_message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="fill_horizontal"
|
|
|
|
android:text="@string/auth_expired_basic_auth_toast"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginBottom="10dp" />
|
2013-06-26 20:50:08 +04:00
|
|
|
|
2013-06-24 12:39:52 +04:00
|
|
|
<FrameLayout
|
2013-07-05 13:52:24 +04:00
|
|
|
android:id="@+id/hostUrlFrame"
|
2013-05-14 17:19:43 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-07-09 11:50:55 +04:00
|
|
|
android:layout_marginBottom="10dp"
|
2013-06-24 12:39:52 +04:00
|
|
|
>
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/hostUrlInput"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-07-09 11:50:55 +04:00
|
|
|
android:layout_gravity="bottom"
|
2013-06-24 12:39:52 +04:00
|
|
|
android:hint="@string/auth_host_url"
|
|
|
|
android:inputType="textUri"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:paddingRight="55dp"
|
|
|
|
>
|
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
|
|
|
<ImageButton
|
2013-07-05 13:52:24 +04:00
|
|
|
android:id="@+id/embeddedRefreshButton"
|
2013-06-24 12:39:52 +04:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_gravity="center_vertical|right"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:padding="0dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:src="@drawable/ic_action_refresh_black"
|
|
|
|
android:onClick="onRefreshClick"
|
2013-07-09 12:19:08 +04:00
|
|
|
android:visibility="gone"
|
2013-06-24 12:39:52 +04:00
|
|
|
android:background="@android:color/transparent"
|
|
|
|
/>
|
|
|
|
</FrameLayout>
|
2013-05-10 18:35:01 +04:00
|
|
|
|
2013-06-24 12:39:52 +04:00
|
|
|
<TextView
|
2013-05-10 18:35:01 +04:00
|
|
|
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"
|
2013-07-25 19:29:52 +04:00
|
|
|
/>
|
2013-05-10 18:35:01 +04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/oAuthEntryPoint_1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
2013-07-25 19:29:52 +04:00
|
|
|
android:enabled="false"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:text="@string/oauth2_url_endpoint_auth"
|
2013-07-25 19:29:52 +04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="textUri"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:visibility="gone" >
|
|
|
|
</EditText>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/oAuthEntryPoint_2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
2013-07-25 19:29:52 +04:00
|
|
|
android:enabled="false"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:text="@string/oauth2_url_endpoint_access"
|
2013-07-25 19:29:52 +04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="textUri"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2013-05-10 18:35:01 +04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_username"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
|
|
|
android:hint="@string/auth_username"
|
2013-07-25 19:29:52 +04:00
|
|
|
android:inputType="textNoSuggestions"
|
|
|
|
/>
|
2013-05-10 18:35:01 +04:00
|
|
|
|
2013-05-17 16:33:31 +04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_password"
|
2013-06-04 12:45:24 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
android:ems="10"
|
|
|
|
android:hint="@string/auth_password"
|
2013-07-25 19:29:52 +04:00
|
|
|
android:inputType="textPassword"
|
|
|
|
/>
|
2013-05-17 16:33:31 +04:00
|
|
|
|
2013-05-10 18:35:01 +04:00
|
|
|
<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"
|
2013-05-21 15:49:42 +04:00
|
|
|
/>
|
2013-05-10 18:35:01 +04:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/account_register"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
2013-05-14 13:20:48 +04:00
|
|
|
android:textColor="#0000FF"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:onClick="onRegisterClick"
|
2013-05-14 13:06:18 +04:00
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:paddingTop="5dp"
|
2013-05-10 18:35:01 +04:00
|
|
|
android:text="@string/auth_register"
|
2013-05-14 13:20:48 +04:00
|
|
|
/>
|
2013-05-10 18:35:01 +04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|