2009-10-21 23:17:45 +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"
|
|
|
|
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"
|
2009-11-30 16:39:13 +00:00
|
|
|
android:textSize="11px"
|
2009-10-21 23:17:45 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2009-11-28 15:41:28 +00:00
|
|
|
|
|
|
|
<Button android:id="@+id/btnLogClear"
|
2009-10-21 23:17:45 +00:00
|
|
|
android:layout_height="40px"
|
2009-11-28 15:41:28 +00:00
|
|
|
android:text="Clear Log"
|
2009-10-21 23:17:45 +00:00
|
|
|
android:layout_margin="0sp"
|
2009-11-28 15:41:28 +00:00
|
|
|
android:layout_width="fill_parent"/>
|
|
|
|
|
2009-10-21 23:17:45 +00:00
|
|
|
</LinearLayout>
|