我有这个布局或Android有问题:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:id="@+id/influencerMainPhotoImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"/>
<android.support.v7.widget.RecyclerView
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/photos_list"
android:name="com.company.android.InfluencerFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_weight="1"
app:layoutManager="LinearLayoutManager"
tools:context="com.company.android.InfluencerFragment"
tools:listitem="@layout/fragment_photo"/>
</LinearLayout>
问题是嵌入式RecyclerView正在进行嵌套滚动(即它在自身内滚动) - 我不希望这样。
我希望整个屏幕能够作为一个整体滚动。
我尝试设置“view.setNestedScrollingEnabled(false);” (在LinearLayout视图上),但它表示它仅适用于API 21及更高版本。我的项目设置为min API 15.
如何将整个屏幕滚动为一个整体?
答案 0 :(得分:1)
您可以将View
替换为ViewCompat
(v4 compat lib):
https://developer.android.com/reference/android/support/v4/view/ViewCompat.html
您拥有setNestedScrollingEnabled(boolean);
方法。