mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 21:27:48 +00:00
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:id="@+id/activity_glview" >
|
|
|
|
<SurfaceView
|
|
android:id="@+id/surfaceview"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/keyboard_layout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginBottom="60dp"
|
|
android:gravity="top"
|
|
android:orientation="horizontal" >
|
|
|
|
<wtf.watrbx.client.RbxKeyboard
|
|
android:id="@+id/gl_edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:gravity="center_vertical|fill_horizontal"
|
|
android:layout_marginTop="36dp">
|
|
|
|
<requestFocus />
|
|
</wtf.watrbx.client.RbxKeyboard>
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|