Warning, /network/kdeconnect-android/res/layout/edit_text_alert_dialog_view.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 <FrameLayout
0010     xmlns:android="http://schemas.android.com/apk/res/android"
0011     xmlns:app="http://schemas.android.com/apk/res-auto"
0012     android:layout_height="match_parent"
0013     android:layout_width="match_parent"
0014     android:paddingTop="?dialogPreferredPadding"
0015     android:paddingStart="?dialogPreferredPadding"
0016     android:paddingLeft="?dialogPreferredPadding"
0017     android:paddingEnd="?dialogPreferredPadding"
0018     android:paddingRight="?dialogPreferredPadding">
0019 
0020     <com.google.android.material.textfield.TextInputLayout
0021         android:id="@+id/textInputLayout"
0022         android:layout_width="match_parent"
0023         android:layout_height="wrap_content"
0024         app:hintEnabled="true">
0025 
0026         <!-- inputType="text" is needed, without it lines and maxLines is ignored https://issuetracker.google.com/issues/37118772 -->
0027         <com.google.android.material.textfield.TextInputEditText
0028             android:id="@+id/textInputEditText"
0029             android:layout_width="match_parent"
0030             android:layout_height="wrap_content"
0031             android:lines="1"
0032             android:maxLines="1"
0033             android:inputType="text" />
0034 
0035     </com.google.android.material.textfield.TextInputLayout>
0036 </FrameLayout>