Warning, /network/kdeconnect-android/res/layout/fragment_storage_preference_dialog.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2019 Erik Duisters <e.duisters1@gmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <LinearLayout
0010     xmlns:android="http://schemas.android.com/apk/res/android"
0011     xmlns:app="http://schemas.android.com/apk/res-auto"
0012     android:layout_width="match_parent"
0013     android:layout_height="match_parent"
0014     android:orientation="vertical"
0015     android:paddingLeft="?attr/dialogPreferredPadding"
0016     android:paddingRight="?attr/dialogPreferredPadding"
0017     android:paddingTop="10dp">
0018 
0019     <com.google.android.material.textfield.TextInputLayout
0020         style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox"
0021         android:layout_width="match_parent"
0022         android:layout_height="wrap_content"
0023         android:paddingTop="5dp"
0024         app:errorEnabled="true">
0025 
0026         <com.google.android.material.textfield.TextInputEditText
0027             android:id="@+id/storageLocation"
0028             style="@style/Widget.MaterialComponents.TextInputEditText.FilledBox"
0029             android:layout_width="match_parent"
0030             android:layout_height="wrap_content"
0031             android:cursorVisible="false"
0032             android:hint="@string/sftp_storage_preference_storage_location"
0033             android:lines="1"
0034             android:longClickable="false"
0035             android:maxLines="1"
0036             android:scrollHorizontally="true"
0037             android:ellipsize="end"
0038             android:inputType="text"
0039             android:text="@string/sftp_storage_preference_click_to_select"
0040             android:textColor="@android:color/darker_gray"
0041             android:editable="false"/>
0042     </com.google.android.material.textfield.TextInputLayout>
0043 
0044     <com.google.android.material.textfield.TextInputLayout
0045         android:id="@+id/storageDisplayNameInputLayout"
0046         style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense"
0047         android:layout_width="match_parent"
0048         android:layout_height="wrap_content"
0049         android:paddingTop="5dp"
0050         app:errorEnabled="true">
0051 
0052         <com.google.android.material.textfield.TextInputEditText
0053             android:id="@+id/storageDisplayName"
0054             style="@style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense"
0055             android:layout_width="match_parent"
0056             android:layout_height="wrap_content"
0057             android:hint="@string/sftp_storage_preference_display_name"
0058             android:lines="1"
0059             android:maxLines="1"
0060             android:scrollHorizontally="true"
0061             android:ellipsize="end"
0062             android:inputType="text"/>
0063     </com.google.android.material.textfield.TextInputLayout>
0064 
0065 </LinearLayout>