res/layout/main.xml
changeset 16 da30cff7f9ce
parent 5 accfe4a4010f
equal deleted inserted replaced
15:3a9afe18996e 16:da30cff7f9ce
     1 <?xml version="1.0" encoding="utf-8"?>
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:orientation="vertical"
     3 	android:orientation="vertical"
     4     android:layout_width="fill_parent"
     4 	android:layout_width="fill_parent"
     5     android:layout_height="fill_parent"
     5 	android:layout_height="fill_parent">
     6     >
     6 
     7 <TextView  
     7 	<ImageView android:id="@+id/logo"
     8     android:layout_width="fill_parent" 
     8 		android:src="@drawable/logo"
     9     android:layout_height="wrap_content" 
     9 		android:adjustViewBounds="true"
    10     android:text="Hello World, Beem"
    10 		android:layout_width="wrap_content"
    11     />
    11 		android:layout_height="wrap_content"/>
       
    12 		
       
    13 	<TextView android:text="Jabber ID"
       
    14 		android:textSize="25sp"
       
    15 		android:paddingLeft="100sp"
       
    16 		android:paddingTop="50sp"
       
    17 		android:paddingBottom="15sp"
       
    18 		android:layout_width="wrap_content"
       
    19 		android:layout_height="wrap_content" />
       
    20 		
       
    21 	<EditText android:id="@+id/jid"
       
    22 		android:singleLine="true"
       
    23 		android:layout_width="fill_parent"
       
    24 		android:layout_height="wrap_content"
       
    25 		android:scrollHorizontally="true" />
       
    26 	
       
    27 	<TextView
       
    28 		android:layout_width="fill_parent"
       
    29 		android:layout_height="10sp"/>
       
    30 
       
    31 	<Button android:id="@+id/connection"
       
    32 		android:textSize="20sp"
       
    33 		android:singleLine="true"
       
    34 		android:layout_width="fill_parent"
       
    35 		android:layout_height="wrap_content"
       
    36 		android:text="Connection" />
       
    37 
    12 </LinearLayout>
    38 </LinearLayout>
    13 
    39