restore layouts

This commit is contained in:
Wisest_wizard 2021-08-11 07:22:35 +05:30 committed by Wisest_wizard
parent aeeae8cf5a
commit c1ce878b06
1 changed files with 12 additions and 15 deletions

View File

@ -1,32 +1,29 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent">
android:id="@+id/relative">
<LinearLayout <FrameLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:id="@+id/linear"
android:paddingBottom="35dp"> android:paddingBottom="35dp">
<SurfaceView <SurfaceView
android:id="@+id/lorieView" android:id="@+id/lorieView"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="match_parent"/> android:layout_height="wrap_content"/>
</LinearLayout> </FrameLayout>
<com.termux.x11.AdditionalKeyboardView <com.termux.x11.AdditionalKeyboardView
android:id="@+id/additionalKbd" android:id="@+id/additionalKbd"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/linear"/> android:layout_gravity="bottom|center" />
<!-- Without this view AdditionalKeyboard view sometimes dissapear --> <!-- Without this view AdditionalKeyboard view sometimes dissapear -->
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_below="@+id/linear"/> android:layout_gravity="bottom|center"/>
</FrameLayout>
</RelativeLayout>