2012-04-03 13:07:33 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-04-05 19:37:15 -06:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/main"
|
2012-04-03 13:07:33 -06:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_width="fill_parent"
|
2012-04-05 19:37:15 -06:00
|
|
|
android:keepScreenOn="true">
|
|
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/mainTable"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:stretchColumns="*">
|
|
|
|
<TableRow>
|
|
|
|
<Button android:text="Jam End"
|
|
|
|
android:onClick="pauseButton" />
|
|
|
|
<Button android:text="Jam Begin"
|
|
|
|
android:onClick="resumeButton" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</ScrollView>
|