adding the initial version of an own implementation of MyKeyboardView

This commit is contained in:
tibbi
2022-01-06 15:53:22 +01:00
parent 63ed037827
commit 46a33d2397
10 changed files with 2927 additions and 7 deletions

View File

@@ -0,0 +1,28 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.simplemobiletools.keyboard.views.MyKeyboardView
android:id="@+id/keyboardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@android:color/transparent"
android:keyPreviewLayout="@layout/keyboard_key_preview"
android:keyTextSize="22sp"
android:popupLayout="@layout/keyboard_popup_keyboard"
tools:ignore="ResourceCycle" />
<ImageButton
android:id="@+id/closeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginStart="8dp"
android:background="@android:color/transparent"
android:clickable="true"
android:src="@drawable/ic_cross_vector" />
</LinearLayout>