]> git.zerfleddert.de Git - ms2-fixes/blame - MS2Debounce/res/layout/main.xml
add load/unload/reload-buttons
[ms2-fixes] / MS2Debounce / res / layout / main.xml
CommitLineData
7bcde8d7 1<?xml version="1.0" encoding="utf-8"?>
dea0f4b0 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
7bcde8d7
MG
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 >
dea0f4b0
MG
6<Button
7 android:id="@+id/reload"
8 android:layout_width="wrap_content"
9 android:layout_height="wrap_content"
10 android:layout_marginTop="10dip"
11 android:layout_alignParentLeft="true"
12 android:onClick="reloadModule"
13 android:text="Reload" />
14<Button
15 android:id="@+id/load"
16 android:layout_below="@id/reload"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:layout_alignParentLeft="true"
20 android:onClick="loadModule"
21 android:text="Load" />
22<Button
23 android:id="@+id/unload"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:layout_toRightOf="@id/load"
27 android:layout_alignTop="@id/load"
28 android:onClick="unloadModule"
29 android:text="Unload" />
30<CheckBox
31 android:id="@+id/on_boot"
32 android:layout_below="@id/load"
33 android:layout_width="fill_parent"
34 android:layout_height="wrap_content"
35 android:text="Load module on boot" />
7bcde8d7 36<TextView
ee6322a1 37 android:id="@+id/text"
dea0f4b0 38 android:layout_below="@id/on_boot"
7bcde8d7 39 android:layout_width="fill_parent"
dea0f4b0 40 android:layout_height="fill_parent"
ee6322a1 41 android:text=""
7bcde8d7 42 />
dea0f4b0 43</RelativeLayout>
7bcde8d7 44
Impressum, Datenschutz