1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 android:orientation="vertical" |
|
4 android:layout_width="fill_parent" |
|
5 android:layout_height="fill_parent"> |
|
6 |
|
7 <ImageView android:id="@+id/logo" |
|
8 android:src="@drawable/logo" |
|
9 android:adjustViewBounds="true" |
|
10 android:layout_width="wrap_content" |
|
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 |
|
38 </LinearLayout> |
|
39 |
|