mirror of
				https://github.com/mik3y/usb-serial-for-android
				synced 2025-10-31 10:27:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			798 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			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>
 |