blob: acd6340243bfc9c25d52e9bd90578423391d37ee [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/get_events"
android:onClick="onGetEventsClicked"/>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/delete_events"
android:onClick="onDeleteEventsClicked"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:textAppearanceLarge"
android:layout_marginTop="6dp"
android:padding="6dp"
android:text="@string/log"
android:textAllCaps="true"
android:textColor="@android:color/white"
android:background="@android:color/black"/>
<ScrollView
android:id="@+id/scroller"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/log"
android:fontFamily="courier"
android:textColor="@android:color/white"
android:background="@android:color/black"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</ScrollView>
</LinearLayout>