2014-12-10 21:17:23 +00:00
|
|
|
<?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"
|
2014-12-14 22:30:35 +00:00
|
|
|
android:layout_height="fill_parent">
|
2014-12-18 00:58:22 +00:00
|
|
|
<TextView android:id="@+id/log"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="start"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:typeface="monospace"
|
|
|
|
android:singleLine="false" />
|
2014-12-14 22:30:35 +00:00
|
|
|
<Button android:id="@+id/startstop"
|
|
|
|
android:layout_width="fill_parent"
|
2014-12-16 21:40:34 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-12-17 23:43:01 +00:00
|
|
|
android:layout_gravity="center"
|
2014-12-14 22:30:35 +00:00
|
|
|
android:text="Start"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
2014-12-16 21:49:54 +00:00
|
|
|
android:onClick="startstop_clicked" />
|
2014-12-10 21:17:23 +00:00
|
|
|
</LinearLayout>
|