mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 01:51:47 +00:00
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2019 Erik Duisters <e.duisters1@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:paddingTop="?dialogPreferredPadding"
|
|
android:paddingStart="?dialogPreferredPadding"
|
|
android:paddingLeft="?dialogPreferredPadding"
|
|
android:paddingEnd="?dialogPreferredPadding"
|
|
android:paddingRight="?dialogPreferredPadding">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/textInputLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:hintEnabled="true">
|
|
|
|
<!-- inputType="text" is needed, without it lines and maxLines is ignored https://issuetracker.google.com/issues/37118772 -->
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/textInputEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lines="1"
|
|
android:maxLines="1"
|
|
android:inputType="text" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</FrameLayout>
|