summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioTesterApp/res/layout/main.xml
blob: 465ebe71932beb88ec3b84bc828062842347a8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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">

    <TextView android:id="@+id/tv_connectionStatus"
        style="@style/small_header_text"
        android:text="@string/connection_status_format" />
    
    <Button android:id="@+id/btn_main_sendMessage"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Send Message"/>

    <ListView  android:id="@+id/list_main_commandList"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_width="fill_parent"
        />
    
</LinearLayout>