Fake ScrollView fixes

- pushed it to the bottom
- width set to wrap_content
This commit is contained in:
Przemek Grondek 2014-07-25 15:17:51 +02:00
parent f9f5266c0f
commit db2f51b472

View file

@ -16,6 +16,19 @@
android:layout_alignParentTop="false"
android:layout_marginTop="-7dp" />
<ScrollView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_below="@+id/loginProgressBar"
android:layout_alignParentRight="true"
android:foregroundGravity="right"
android:id="@+id/fakeScroll">
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/dummyView"/>
</ScrollView>
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -47,17 +60,4 @@
</RelativeLayout>
</HorizontalScrollView>
<ScrollView
android:layout_width="@dimen/activity_horizontal_margin"
android:layout_height="fill_parent"
android:layout_below="@+id/loginProgressBar"
android:layout_alignParentRight="true"
android:foregroundGravity="right"
android:id="@+id/fakeScroll">
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/dummyView"/>
</ScrollView>
</RelativeLayout>