我试图复制this behaviour,但在实施之后,我发现性能下降很大。
然后我尝试以不同的方式实现它:我将图像放在scrollview后面,并简单地给scrollview的内容一些顶部填充。这是一些相关的XML:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="">
<ImageView
android:id="@+id/profileImage"
android:layout_width="0dp"
android:layout_height="144dp"
android:scaleType="centerCrop"
android:src="@drawable/mapview"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ScrollView
android:id="@+id/profileScrollView"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:paddingBottom="70dp"
android:paddingTop="120dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
</android.support.constraint.ConstraintLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
我遗漏了不必要的XML。
当ScrollView尝试移动ImageView时,会出现这种不良性能。如果ImageView嵌入在另一个视图中,例如ConstraintLayout。
,它仍然会发生为什么这个ScrollView会变慢?我应该在布局中改变一些东西吗?谢谢!