Skip to content

Commit 6de0040

Browse files
committed
Wrap the info page in a ScrollView for smaller devices
1 parent 320a294 commit 6de0040

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

res/layout/fragment_info.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
33
style="@style/AppInfoLayout"
44
android:layout_width="match_parent"
5-
android:layout_height="match_parent"
5+
android:layout_height="match_parent">
6+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7+
android:layout_width="match_parent"
8+
android:layout_height="wrap_content"
69
android:orientation="vertical" >
710

811
<View style="@style/InfoDivider" />
@@ -86,4 +89,5 @@
8689

8790
<View style="@style/InfoDivider" />
8891

89-
</LinearLayout>
92+
</LinearLayout>
93+
</ScrollView>

0 commit comments

Comments
 (0)