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">
|
2011-09-12 03:59:51 +00:00
|
|
|
<ScrollView android:id="@+id/info_scroll" android:layout_width="fill_parent"
|
|
|
|
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"
|
|
|
|
android:id="@+id/info"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:layout_margin="5px"></TextView>
|
2011-09-12 03:59:51 +00:00
|
|
|
</ScrollView>
|
2010-10-04 00:11:48 +00:00
|
|
|
</LinearLayout>
|
2011-09-12 03:59:51 +00:00
|
|
|
|