summaryrefslogtreecommitdiffstats
path: root/res/layout/browser_add_bookmark.xml
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-09-26 09:25:43 -0700
committerJohn Reck <jreck@google.com>2011-09-26 15:54:21 -0700
commit95f88e4825f6330938bd589ed39f1537469338e4 (patch)
tree4e2c0d8c18da8060847803ea6cc75dfcc228dcbc /res/layout/browser_add_bookmark.xml
parentce16fbf9f9e7afdc02f696fbdccc4f54bf09a8da (diff)
downloadandroid_packages_apps_Gello-95f88e4825f6330938bd589ed39f1537469338e4.tar.gz
android_packages_apps_Gello-95f88e4825f6330938bd589ed39f1537469338e4.tar.bz2
android_packages_apps_Gello-95f88e4825f6330938bd589ed39f1537469338e4.zip
Update add bookmark dialog
Bug: 5362468 Don't put listviews inside scrollviews Update the buttons to fancy style Cleanup padding and sizes Change-Id: I6b255a194a150b9efb01157475815e654df8231c
Diffstat (limited to 'res/layout/browser_add_bookmark.xml')
-rw-r--r--res/layout/browser_add_bookmark.xml17
1 files changed, 7 insertions, 10 deletions
diff --git a/res/layout/browser_add_bookmark.xml b/res/layout/browser_add_bookmark.xml
index 4b84ff27..66950f40 100644
--- a/res/layout/browser_add_bookmark.xml
+++ b/res/layout/browser_add_bookmark.xml
@@ -14,16 +14,13 @@
limitations under the License.
-->
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:divider="?android:attr/dividerHorizontal"
+ android:showDividers="middle">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- >
- <include layout="@layout/browser_add_bookmark_content" />
+ <include layout="@layout/browser_add_bookmark_content" />
- </LinearLayout>
-</ScrollView>
+</LinearLayout>