Subversion Repositories Code-Repo

Compare Revisions

No changes between revisions

Ignore whitespace Rev 89 → Rev 90

/Android Development/IOIODebugger/res/layout/main.xml
0,0 → 1,47
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rootLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
 
<LinearLayout
android:id="@+id/statusLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
+
+ <TextView
+ android:id="@+id/textStatus"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="Status Text"
+ android:textAppearance="?android:attr/textAppearanceSmall" />
+
+ <ProgressBar
+ android:id="@+id/progressStatus"
+ style="?android:attr/progressBarStyleSmall"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ </LinearLayout>
+
+ <ScrollView
+ android:id="@+id/scrollView1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <LinearLayout
+ android:id="@+id/mainLayout"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+
+ </LinearLayout>
+ </ScrollView>
+
+</LinearLayout>
\ No newline at end of file