我有一个可滚动的layout
。我需要在父级的右下角放置一个ImageView
的地方,即使在滚动时ImageView
也应固定在该位置。以下是我写的代码。
<ScrollView 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">
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/random_text"
android:textSize="20dp"
app:layout_constraintRight_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/back_to_top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/back_to_top"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent" />
</android.support.constraint.ConstraintLayout>
但是ImageView
可以与内容一起滚动而不是固定的。如何在ConstraintLayout
中实现这一目标?一种解决方案是将ImageView
置于ConstraintLayout
之外,但是在将其置于ConstraintLayout
内时,是否有任何可以实现的目标。
注意:这是一个非常简单的布局,我用它来发布问题。真实的布局更复杂,但也有同样的问题。