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="@string/BeemJabberID" |
|
14 android:textSize="25sp" |
|
15 android:paddingLeft="100sp" |
|
16 android:paddingTop="50sp" |
|
17 android:paddingBottom="15sp" |
|
18 android:layout_width="fill_parent" |
|
19 android:layout_height="wrap_content" /> |
|
20 |
|
21 <ImageView android:id="@+id/avatar" |
|
22 android:src="@drawable/bart" |
|
23 android:paddingTop="10sp" |
|
24 android:paddingBottom="10sp" |
|
25 android:adjustViewBounds="true" |
|
26 android:layout_width="fill_parent" |
|
27 android:layout_height="wrap_content"/> |
|
28 |
|
29 <Button android:id="@+id/connection" |
|
30 android:textSize="20sp" |
|
31 android:singleLine="true" |
|
32 android:layout_width="fill_parent" |
|
33 android:layout_height="wrap_content"/> |
|
34 |
|
35 </LinearLayout> |
|