mirror of
https://github.com/SimpleMobileTools/Simple-Keyboard.git
synced 2025-06-05 21:49:26 +02:00
changing the keyboard layout to a linear one to allow clicking through it
This commit is contained in:
@ -1,14 +1,15 @@
|
|||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:id="@+id/keyboard_holder"
|
android:id="@+id/keyboard_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentBottom="true"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:id="@+id/clipboard_holder"
|
android:id="@+id/clipboard_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="@dimen/clipboard_height"
|
android:layout_height="@dimen/clipboard_height"
|
||||||
android:layout_above="@+id/keyboard_view"
|
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingStart="@dimen/big_margin"
|
android:paddingStart="@dimen/big_margin"
|
||||||
android:paddingEnd="@dimen/big_margin">
|
android:paddingEnd="@dimen/big_margin">
|
||||||
@ -33,8 +34,7 @@
|
|||||||
android:id="@+id/keyboard_view"
|
android:id="@+id/keyboard_view"
|
||||||
style="@style/MyKeyboardView"
|
style="@style/MyKeyboardView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentBottom="true"
|
|
||||||
android:background="@color/theme_dark_background_color" />
|
android:background="@color/theme_dark_background_color" />
|
||||||
|
|
||||||
</RelativeLayout>
|
</LinearLayout>
|
||||||
|
Reference in New Issue
Block a user