diff options
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 3720790..4b84ff2 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> |