diff options
| author | John Reck <jreck@google.com> | 2011-09-06 15:55:22 -0700 |
|---|---|---|
| committer | John Reck <jreck@google.com> | 2011-09-06 15:55:22 -0700 |
| commit | aec19cee95294e3ddfae1cb549f852b1e9bdac4b (patch) | |
| tree | 720e94254fb39aec2fad70552348742f52295f11 /res/layout/browser_add_bookmark.xml | |
| parent | 6d3975f136ea15fa4390edccaa78b95adf1b85d9 (diff) | |
| download | packages_apps_Browser-aec19cee95294e3ddfae1cb549f852b1e9bdac4b.tar.gz packages_apps_Browser-aec19cee95294e3ddfae1cb549f852b1e9bdac4b.tar.bz2 packages_apps_Browser-aec19cee95294e3ddfae1cb549f852b1e9bdac4b.zip | |
Support scrolling in add bookmark dialog
Bug: 5262349
Change-Id: I7d15f9de812848f3bff82804421ce878ee7f9beb
Diffstat (limited to 'res/layout/browser_add_bookmark.xml')
| -rw-r--r-- | res/layout/browser_add_bookmark.xml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/res/layout/browser_add_bookmark.xml b/res/layout/browser_add_bookmark.xml index 37207909c..4b84ff27f 100644 --- a/res/layout/browser_add_bookmark.xml +++ b/res/layout/browser_add_bookmark.xml @@ -14,11 +14,16 @@ limitations under the License. --> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical" - > - <include layout="@layout/browser_add_bookmark_content" /> + android:layout_height="match_parent"> -</LinearLayout> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + > + <include layout="@layout/browser_add_bookmark_content" /> + + </LinearLayout> +</ScrollView> |
