termux-x11/app/src/main/res/layout/main_activity.xml

30 lines
958 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2021-08-11 03:52:35 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2021-08-11 03:52:35 +02:00
android:layout_height="match_parent">
2021-08-11 03:52:35 +02:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-08-11 05:08:38 +02:00
android:id="@+id/frame">
<SurfaceView
android:id="@+id/lorieView"
android:layout_width="wrap_content"
2021-08-11 03:52:35 +02:00
android:layout_height="wrap_content"/>
2021-08-11 03:52:35 +02:00
</FrameLayout>
<me.sergiotarxz.openmg.x11.AdditionalKeyboardView
android:id="@+id/additionalKbd"
android:layout_width="match_parent"
2021-08-11 03:52:35 +02:00
android:layout_height="wrap_content"
android:layout_gravity="bottom|center" />
<!-- Without this view AdditionalKeyboard view sometimes dissapear -->
<View
android:layout_width="match_parent"
2021-08-11 03:52:35 +02:00
android:layout_height="match_parent"
android:layout_gravity="bottom|center"/>
</FrameLayout>