summaryrefslogtreecommitdiffstats
path: root/res/layout/add_new_bookmark.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/add_new_bookmark.xml')
-rw-r--r--res/layout/add_new_bookmark.xml19
1 files changed, 13 insertions, 6 deletions
diff --git a/res/layout/add_new_bookmark.xml b/res/layout/add_new_bookmark.xml
index c8eb220..0335574 100644
--- a/res/layout/add_new_bookmark.xml
+++ b/res/layout/add_new_bookmark.xml
@@ -17,14 +17,19 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
+ android:minHeight="?android:attr/listPreferredItemHeight"
android:orientation="horizontal"
- android:paddingTop="0dip"
- android:paddingBottom="0dip"
+ android:paddingRight="6dip"
+ android:paddingLeft="6dip"
+ android:paddingTop="5dip"
+ android:paddingBottom="5dip"
+ android:gravity="center_vertical"
>
<ImageView android:id="@+id/favicon"
android:layout_width="48dip"
android:layout_height="48dip"
- android:layout_marginRight="6dip"
+ android:layout_marginLeft="5dip"
+ android:layout_marginRight="11dip"
android:focusable="false"
android:src="@android:drawable/ic_menu_add"
android:scaleType="fitCenter"
@@ -33,20 +38,22 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
- android:gravity="center_vertical"
>
<TextView android:id="@+id/title"
android:text="@string/add_new_bookmark"
- android:textAppearance="?android:attr/textAppearanceLarge"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_marginBottom="2dip"
/>
<TextView android:id="@+id/url"
android:textAppearance="?android:attr/textAppearanceSmall"
android:maxLines="1"
- android:scrollHorizontally="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:ellipsize="end"
/>
</LinearLayout>
</LinearLayout>