1
0
mirror of https://github.com/mik3y/usb-serial-for-android synced 2025-06-10 17:36:21 +00:00
2011-12-28 16:29:17 -08:00

27 lines
798 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/demoTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<ScrollView
android:id="@+id/demoScroller"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/demoText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:typeface="monospace" />
</ScrollView>
</LinearLayout>