Issue 546, let share screen scroll on tiny screens

git-svn-id: https://zxing.googlecode.com/svn/trunk@1602 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2010-09-22 12:53:31 +00:00
parent 919713eb3b
commit 897d6c3501

View file

@ -18,8 +18,19 @@
android:id="@+id/encode_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:background="@color/share_view"
android:orientation="vertical">
<!-- ScrollView wrapper is to accommodate small screens -->
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Must wrap the rest in one layout -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:padding="16dip">
@ -78,3 +89,7 @@
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>