Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.xml « layout « res « app « android « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd8758378780f48959f12d0304de8e93193decb4 (plain)
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
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

    <TextView
        android:id="@+id/binarystatustext"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text=""
        android:textAppearance="?android:attr/textAppearanceMedium" />

<Button
    android:id="@+id/gameselecterbutton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Select Game" />

<TextView
    android:id="@+id/gamenametext"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="No game was selected"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<Button
    android:id="@+id/startbutton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Start Blenderplayer" 
    android:enabled="false"
    />

</LinearLayout>