32 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    xmlns:tools="http://schemas.android.com/tools"
 | 
						|
    android:id="@+id/LinearLayout1"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent"
 | 
						|
    android:gravity="center"
 | 
						|
    android:orientation="vertical"
 | 
						|
    tools:context=".MainActivity" >
 | 
						|
 | 
						|
    <TextView
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:padding="5dp"
 | 
						|
        android:text="@string/intro_message" />
 | 
						|
 | 
						|
    <TextView
 | 
						|
        android:id="@+id/textStatus"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:gravity="center"
 | 
						|
        android:text="@string/secondary_notconnected"
 | 
						|
        android:textAppearance="?android:attr/textAppearanceLarge"
 | 
						|
        android:layout_margin="5dp" />
 | 
						|
 | 
						|
    <Button
 | 
						|
        android:id="@+id/button1"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:enabled="false"
 | 
						|
        android:text="@string/change_color" />
 | 
						|
 | 
						|
</LinearLayout> |