summaryrefslogtreecommitdiffstats
path: root/samples/browseable/NetworkConnect/res/layout/sample_main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/browseable/NetworkConnect/res/layout/sample_main.xml')
-rwxr-xr-xsamples/browseable/NetworkConnect/res/layout/sample_main.xml18
1 files changed, 10 insertions, 8 deletions
diff --git a/samples/browseable/NetworkConnect/res/layout/sample_main.xml b/samples/browseable/NetworkConnect/res/layout/sample_main.xml
index 76fa7d783..00e219c5b 100755
--- a/samples/browseable/NetworkConnect/res/layout/sample_main.xml
+++ b/samples/browseable/NetworkConnect/res/layout/sample_main.xml
@@ -21,20 +21,22 @@
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
- <fragment
- android:name="com.example.android.networkconnect.SimpleTextFragment"
- android:id="@+id/intro_fragment"
+ <TextView
+ android:id="@+id/intro_text"
android:layout_weight="1"
android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:layout_height="match_parent"
+ android:textSize="16sp"
+ android:text="@string/welcome_message"
+ android:freezesText="true"/>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray"/>
- <fragment
- android:name="com.example.android.common.logger.LogFragment"
- android:id="@+id/log_fragment"
+ <TextView
+ android:id="@+id/data_text"
android:layout_weight="1"
android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:layout_height="match_parent"
+ android:freezesText="true"/>
</LinearLayout>