2012-05-13 18:13:13 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
ownCloud Android client application
|
2012-02-04 20:55:17 +04:00
|
|
|
|
2013-02-07 21:45:10 +04:00
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
|
|
|
Copyright (C) 2012-2013 ownCloud Inc.
|
|
|
|
|
2012-05-13 18:13:13 +04: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
|
2013-02-08 12:22:46 +04:00
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
2012-05-13 18:13:13 +04:00
|
|
|
(at your option) any later version.
|
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/>.
|
|
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:focusable="true"
|
|
|
|
android:gravity="center|fill"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/LinearLayout1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_weight="1"
|
2012-06-27 20:28:42 +04:00
|
|
|
android:src="@drawable/owncloud_logo" />
|
2012-05-13 18:13:13 +04:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/host_URL"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ems="10"
|
|
|
|
android:hint="@string/auth_host_url"
|
2012-10-08 20:31:02 +04:00
|
|
|
android:inputType="textNoSuggestions" >
|
2012-05-13 18:13:13 +04:00
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/refreshButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_action_refresh_black"
|
|
|
|
android:layout_gravity="right|center_vertical"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:src="@android:drawable/stat_notify_sync"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="TextView"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/auth_login_details"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_username"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ems="10"
|
2012-10-07 23:43:40 +04:00
|
|
|
android:hint="@string/auth_username"
|
|
|
|
android:inputType="textNoSuggestions" />
|
2012-05-13 18:13:13 +04:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_password"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ems="10"
|
|
|
|
android:hint="@string/auth_password"
|
2012-11-29 14:28:34 +04:00
|
|
|
android:inputType="textPassword"/>
|
2012-05-13 18:13:13 +04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/viewPassword"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right|center_vertical"
|
|
|
|
android:src="@android:drawable/ic_menu_view"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
2012-08-20 16:36:46 +04:00
|
|
|
</LinearLayout>
|
2012-05-13 18:13:13 +04:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
2012-08-20 16:36:46 +04:00
|
|
|
android:layout_height="wrap_content">
|
2012-05-13 18:13:13 +04:00
|
|
|
|
|
|
|
<LinearLayout
|
2012-08-20 16:36:46 +04:00
|
|
|
android:id="@+id/buttons_layout"
|
2012-05-13 18:13:13 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:weightSum="1" >
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonCancel"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight=".5"
|
2012-06-21 22:02:33 +04:00
|
|
|
android:onClick="onCancelClick"
|
2012-05-13 18:13:13 +04:00
|
|
|
android:text="@string/common_cancel" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonOK"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight=".5"
|
|
|
|
android:enabled="false"
|
|
|
|
android:onClick="onOkClick"
|
|
|
|
android:text="@string/setup_btn_connect"
|
|
|
|
android:textColor="@android:color/black" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2012-08-20 16:36:46 +04:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/account_register"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/buttons_layout"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:onClick="onRegisterClick"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:textColor="#0000FF"
|
2012-11-29 15:26:55 +04:00
|
|
|
android:background="@android:color/transparent" />
|
|
|
|
<!-- android:text="@string/app_name @string/auth_register" /-->
|
2012-08-20 16:36:46 +04:00
|
|
|
|
2012-05-13 18:13:13 +04:00
|
|
|
</RelativeLayout>
|
|
|
|
|
2012-07-31 19:43:37 +04:00
|
|
|
</LinearLayout>
|