mirror of
https://github.com/nextcloud/android.git
synced 2024-12-21 08:24:08 +03:00
e3d57e7c42
Resolves #12920 Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Nextcloud - Android Client
|
|
~
|
|
~ SPDX-FileCopyrightText: 2021 Andy Scherzinger <info@andy-scherzinger>
|
|
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="@dimen/standard_padding">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/share_password_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/hint_password">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/share_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:autofillHints="password"
|
|
android:ems="10"
|
|
android:gravity="top"
|
|
android:inputType="textPassword">
|
|
|
|
</com.google.android.material.textfield.TextInputEditText>
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
</LinearLayout>
|