summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2011-03-09 17:24:08 +0000
committerAntoine Cellerier <dionoea@videolan.org>2011-03-09 17:24:08 +0000
commitc9190dc188edb3dbea89e7ef1be7bc0dd33eba19 (patch)
tree8ab674302ced8bbd823ecef221bb24dada7e666b /android
parent5b6a84998681dbab3574c03cca9798dae7c258a2 (diff)
Add a scrollbar to the android widget's configuration activity.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29551 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android')
-rw-r--r--android/res/layout/appwidget_configure.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/android/res/layout/appwidget_configure.xml b/android/res/layout/appwidget_configure.xml
index 1f33afe61e..75ee49c38e 100644
--- a/android/res/layout/appwidget_configure.xml
+++ b/android/res/layout/appwidget_configure.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:fillViewport="true">
+<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
@@ -41,4 +44,5 @@
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_confirm"/>
</LinearLayout>
+</ScrollView>