2010-10-04 00:11:48 +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" android:background="#333333">
|
2012-04-04 21:16:26 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="true"
|
|
|
|
android:onClick="infoClicked"
|
|
|
|
android:padding="10px"
|
|
|
|
android:background="#666666">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/heading"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:gravity="center"
|
|
|
|
></TextView>
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:gravity="center"
|
|
|
|
android:id="@+id/info"
|
|
|
|
></TextView>
|
|
|
|
</LinearLayout>
|
|
|
|
<ScrollView android:id="@+id/log_scroll" android:layout_width="fill_parent"
|
2011-09-12 03:59:51 +00:00
|
|
|
android:layout_height="fill_parent" android:layout_weight="1">
|
2011-09-11 08:35:10 +00:00
|
|
|
<TextView
|
2010-10-04 00:11:48 +00:00
|
|
|
android:layout_width="fill_parent"
|
2011-09-11 08:35:10 +00:00
|
|
|
android:layout_height="fill_parent"
|
2012-04-04 21:16:26 +00:00
|
|
|
android:id="@+id/log"
|
2011-09-11 08:35:10 +00:00
|
|
|
android:textColor="#FFFFFF"
|
2012-04-04 21:16:26 +00:00
|
|
|
android:textColorLink="#FFFFFF"
|
2011-09-11 08:35:10 +00:00
|
|
|
android:layout_margin="5px"></TextView>
|
2011-09-12 03:59:51 +00:00
|
|
|
</ScrollView>
|
2012-04-04 21:16:26 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/upgrade_button"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="20sp"
|
|
|
|
android:onClick="upgradeClicked"
|
|
|
|
android:text="" />
|
2010-10-04 00:11:48 +00:00
|
|
|
</LinearLayout>
|
2011-09-12 03:59:51 +00:00
|
|
|
|