aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2007-11-18 05:52:08 +0000
committerKenny Root <kenny@the-b.org>2007-11-18 05:52:08 +0000
commit1c008e4dffdf42797f623a6a5ced59d705d4e6b5 (patch)
treef71e75bbb962b1dbb61506b9f29aca8eb376b10e /res/layout
parent0a4ee03304d605e7e1383aa37ff2c355a383caff (diff)
downloadconnectbot-1c008e4dffdf42797f623a6a5ced59d705d4e6b5.tar.gz
connectbot-1c008e4dffdf42797f623a6a5ced59d705d4e6b5.tar.bz2
connectbot-1c008e4dffdf42797f623a6a5ced59d705d4e6b5.zip
Updated icon for about screen.
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/about_dialog.xml23
1 files changed, 17 insertions, 6 deletions
diff --git a/res/layout/about_dialog.xml b/res/layout/about_dialog.xml
index 56e265c..9a515fc 100644
--- a/res/layout/about_dialog.xml
+++ b/res/layout/about_dialog.xml
@@ -1,11 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
android:layout_width="fill_parent"
- android:layout_height="wrap_content"
+ android:layout_height="64px"
android:theme="@android:style/Theme.Dialog">
+ <ImageView id="@+id/icon"
+ android:layout_width="75px"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:minHeight="64px"
+ android:minWidth="64px"
+ android:src="@drawable/icon"/>
+
<TextView id="@+id/copyright"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/msg_copyright"/>
-</RelativeLayout> \ No newline at end of file
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingLeft="10dip"
+ android:layout_weight="2"
+ android:text="@string/msg_copyright"/>
+</LinearLayout> \ No newline at end of file