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

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2021 Daniel Weigl <danielweigl@gmx.at>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <androidx.coordinatorlayout.widget.CoordinatorLayout
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     xmlns:tools="http://schemas.android.com/tools"
0015     tools:context="org.kde.kdeconnect.Plugins.MousePadPlugin.SendKeystrokesToHostActivity">
0016 
0017     <include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
0018 
0019     <LinearLayout
0020         android:id="@+id/sendkeystrokes_view"
0021         android:layout_width="match_parent"
0022         android:layout_height="match_parent"
0023         android:keepScreenOn="true"
0024         android:orientation="vertical"
0025         android:descendantFocusability="beforeDescendants"
0026         android:focusableInTouchMode="true"
0027         app:layout_behavior="@string/appbar_scrolling_view_behavior">
0028 
0029         <com.google.android.material.textfield.TextInputLayout
0030             style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox"
0031             android:layout_width="match_parent"
0032             android:layout_height="wrap_content"
0033             android:paddingTop="4dp"
0034             android:layout_margin="4dp"
0035             app:errorEnabled="true">
0036 
0037             <com.google.android.material.textfield.TextInputEditText
0038                 android:id="@+id/textToSend"
0039                 style="@style/Widget.MaterialComponents.TextInputEditText.FilledBox"
0040                 android:layout_width="match_parent"
0041                 android:layout_height="wrap_content"
0042                 android:cursorVisible="true"
0043                 android:hint="@string/sendkeystrokes_textbox_hint"
0044                 android:inputType="text"
0045                 android:lines="1"
0046                 android:maxLines="1"
0047                 android:scrollHorizontally="true"
0048                 android:text="" />
0049         </com.google.android.material.textfield.TextInputLayout>
0050 
0051         <ListView
0052             android:id="@+id/devices_list"
0053             android:layout_width="match_parent"
0054             android:layout_height="match_parent"
0055             android:addStatesFromChildren="true"
0056             android:divider="@null"
0057             android:dividerHeight="0dp"
0058             android:orientation="vertical"
0059             android:paddingTop="8dp"
0060             tools:context=".MainActivity" />
0061     </LinearLayout>
0062 </androidx.coordinatorlayout.widget.CoordinatorLayout>