Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 18 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | android:orientation="horizontal" |
||
| 4 | android:layout_width="wrap_content" |
||
| 5 | android:layout_height="fill_parent" |
||
| 6 | android:layout_gravity="center" |
||
| 7 | android:weightSum="1"> |
||
| 8 | |||
| 9 | <ImageView |
||
| 10 | android:layout_height="wrap_content" |
||
| 11 | android:id="@+id/imageView1" |
||
| 12 | android:src="@drawable/icon" |
||
| 13 | android:layout_width="wrap_content" |
||
| 14 | android:layout_marginTop="20dip" |
||
| 15 | android:layout_marginBottom="20dip" |
||
| 16 | /> |
||
| 17 | |||
| 18 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 19 | android:orientation="vertical" |
||
| 20 | android:layout_width="wrap_content" |
||
| 21 | android:layout_height="fill_parent" |
||
| 22 | android:layout_gravity="center" |
||
| 23 | android:layout_marginLeft="20dip" |
||
| 24 | android:weightSum="1"> |
||
| 25 | |||
| 26 | <TextView |
||
| 27 | android:layout_width="wrap_content" |
||
| 28 | android:id="@+id/textView1" |
||
| 29 | android:layout_height="wrap_content" |
||
| 30 | android:textAppearance="?android:attr/textAppearanceLarge" |
||
| 31 | android:layout_marginTop="20dip" |
||
| 32 | android:layout_marginBottom="10dip" |
||
| 33 | android:text="@string/app_name" |
||
| 34 | /> |
||
| 35 | |||
| 36 | <TextView |
||
| 37 | android:layout_width="wrap_content" |
||
| 38 | android:layout_height="wrap_content" |
||
| 39 | android:id="@+id/textViewVersion" |
||
| 40 | android:textAppearance="?android:attr/textAppearanceSmall" |
||
| 41 | android:text="@string/about_version" |
||
| 42 | android:layout_marginBottom="25dp" |
||
| 43 | /> |
||
| 44 | |||
| 45 | <TextView |
||
| 46 | android:layout_width="wrap_content" |
||
| 47 | android:layout_height="wrap_content" |
||
| 48 | android:id="@+id/textView2" |
||
| 49 | android:textAppearance="?android:attr/textAppearanceSmall" |
||
| 50 | android:text="@string/about_credits1" |
||
| 51 | android:layout_marginBottom="5dp" |
||
| 52 | /> |
||
| 53 | |||
| 54 | <TextView |
||
| 55 | android:layout_width="wrap_content" |
||
| 56 | android:layout_height="wrap_content" |
||
| 57 | android:id="@+id/textView3" |
||
| 58 | android:textAppearance="?android:attr/textAppearanceSmall" |
||
| 59 | android:text="@string/about_credits2" |
||
| 60 | android:layout_marginBottom="15dp" |
||
| 61 | /> |
||
| 62 | |||
| 63 | <TextView |
||
| 64 | android:layout_width="wrap_content" |
||
| 65 | android:layout_height="wrap_content" |
||
| 66 | android:id="@+id/textView4" |
||
| 67 | android:textAppearance="?android:attr/textAppearanceSmall" |
||
| 68 | android:text="@string/about_copyright" |
||
| 69 | android:layout_marginBottom="5dp" |
||
| 70 | /> |
||
| 71 | |||
| 72 | <TextView |
||
| 73 | android:layout_width="wrap_content" |
||
| 74 | android:layout_height="wrap_content" |
||
| 75 | android:id="@+id/textView5" |
||
| 76 | android:textAppearance="?android:attr/textAppearanceSmall" |
||
| 77 | android:text="@string/about_weburl" |
||
| 78 | android:layout_marginBottom="5dp" |
||
| 79 | android:autoLink="web" |
||
| 80 | /> |
||
| 81 | |||
| 82 | </LinearLayout> |
||
| 83 | |||
| 84 | </LinearLayout> |