28 lines
914 B
XML
28 lines
914 B
XML
<?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"
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
<ScrollView android:layout_height="380px"
|
|
android:layout_width="fill_parent" android:id="@+id/logScrollView">
|
|
|
|
<TextView android:id="@+id/messageLog"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1.0"
|
|
android:textSize="11px"
|
|
/>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
<Button android:id="@+id/btnLogClear"
|
|
android:layout_height="40px"
|
|
android:text="Clear Log"
|
|
android:layout_margin="0sp"
|
|
android:layout_width="fill_parent"/>
|
|
|
|
</LinearLayout>
|