forked from nicolasgramlich/AndEngineExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscriptingexample.xml
More file actions
29 lines (28 loc) · 1.08 KB
/
Copy pathscriptingexample.xml
File metadata and controls
29 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<org.andengine.opengl.view.RenderSurfaceView android:id="@+id/scriptingexample_rendersurfaceview"
android:layout_width="fill_parent"
android:layout_height="320dp"
android:layout_gravity="center"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<EditText android:id="@+id/scriptingexample_code"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:gravity="left"
android:textSize="12sp"
android:singleLine="false"
android:hint="@string/scriptingexample_code_hint"/>
<Button android:id="@+id/scriptingexample_code_apply"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/scriptingexample_code_apply"/>
</LinearLayout>
</LinearLayout>