我有一个Fragment
,其中一个ScrollView
内的一个RelativeLayout
可以正常工作,直到现在我升级了项目的targetSdkVersion
和compileSdkVersion
分别从22和23扩展到27,并根据此更改,我将com.android.support
库从23.0.1升级到27.1.1。
现在,在Android Studio布局设计中,ScrollView
似乎可以正常工作,但是当部署到设备上时,它不再滚动了。
我已经尝试了许多线程中提出的解决方案,这些解决方案涉及ScrollView
不滚动(使用NestedScrollView
等),但无济于事。它遵循XML布局:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- ... Other stuff here ... -->
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="90dp"
android:layout_alignParentBottom="true"
android:background="@color/white"
android:paddingTop="10dp">
<Button
style="@style/FlatButton"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_centerVertical="false"
android:layout_marginLeft="13.5dp"
android:layout_marginRight="13.5dp"
android:alpha="1"
android:background="@drawable/shape_radius"
android:text="@string/getapp_save"
android:textColor="#ffffff"
android:textSize="18sp"
android:visibility="visible">
</Button>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_bottom_white_transparent">
</RelativeLayout>
</RelativeLayout>
谢谢。