我有一个Fragment
带有ScrollView
内部的 a 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>
提前致谢。