|
@@ -1,24 +1,23 @@
|
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<!--
|
|
|
- ownCloud Android client application
|
|
|
+<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
+ Nextcloud Android client application
|
|
|
|
|
|
- Copyright (C) 2012 Bartek Przybylski
|
|
|
- Copyright (C) 2015 ownCloud Inc.
|
|
|
+ Copyright (C) 2018 Tobias Kaminsky
|
|
|
+ Copyright (C) 2018 Nextcloud
|
|
|
|
|
|
- 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.
|
|
|
+ This program is free software; you can redistribute it and/or
|
|
|
+ modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
+ License as published by the Free Software Foundation; either
|
|
|
+ version 3 of the License, or any later version.
|
|
|
|
|
|
- You should have received a copy of the GNU General Public License
|
|
|
- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
+
|
|
|
+ You should have received a copy of the GNU Affero 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"
|
|
|
- xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
android:gravity="clip_horizontal"
|
|
@@ -29,32 +28,26 @@
|
|
|
android:id="@+id/encryption_status"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_margin="10dp"/>
|
|
|
+ android:layout_margin="@dimen/standard_margin" />
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/encryption_passphrase"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_margin="10dp"
|
|
|
+ android:layout_margin="@dimen/standard_margin"
|
|
|
android:background="@drawable/e2e_border"
|
|
|
- android:textIsSelectable="true"
|
|
|
android:gravity="center"
|
|
|
android:padding="5dp"
|
|
|
- android:visibility="gone"/>
|
|
|
+ android:textIsSelectable="true"
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
|
- <android.support.design.widget.TextInputLayout
|
|
|
- android:id="@+id/encryption_passwordLayout"
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/encryption_passwordInput"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:visibility="gone"
|
|
|
- app:passwordToggleEnabled="true">
|
|
|
-
|
|
|
- <android.support.design.widget.TextInputEditText
|
|
|
- android:id="@+id/encryption_passwordInput"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:hint="@string/end_to_end_encryption_password"
|
|
|
- android:ems="10"
|
|
|
- android:inputType="textPassword"/>
|
|
|
- </android.support.design.widget.TextInputLayout>
|
|
|
+ android:ems="10"
|
|
|
+ android:hint="@string/end_to_end_encryption_password"
|
|
|
+ android:inputType="textPassword"
|
|
|
+ android:textCursorDrawable="@null"
|
|
|
+ android:visibility="gone" />
|
|
|
</LinearLayout>
|