gpt4 book ai didi

android - OnSwipe dragUp 不适用于 MotionLayout 中的 subview

转载 作者:行者123 更新时间:2023-12-05 00:02:28 26 4
gpt4 key购买 nike

我想使用 MotionLayout 在我的 Activity 中实现 Bottom Sheet 。
Action 场景:

<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:motion="http://schemas.android.com/apk/res-auto">

<Transition
motion:constraintSetEnd="@+id/end"
motion:constraintSetStart="@id/start"
motion:duration="2000">

<OnSwipe
motion:dragDirection="dragUp"
motion:touchAnchorId="@id/bottomSheet"
motion:touchRegionId="@id/bottomSheet" />

</Transition>

<ConstraintSet android:id="@+id/start">

<Constraint
android:id="@+id/bottomSheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
motion:layout_constraintBottom_toBottomOf="parent"/>

</ConstraintSet>

<ConstraintSet android:id="@+id/end">

<Constraint
android:id="@+id/bottomSheet"
android:layout_width="match_parent"
android:layout_height="0dp"
motion:layout_constraintTop_toTopOf="parent"
motion:layout_constraintBottom_toBottomOf="parent"/>

</ConstraintSet>

</MotionScene>
现在,如果我像下面的代码那样实现我的 MotionLayout,我不能在按钮区域拖动:
<androidx.constraintlayout.motion.widget.MotionLayout 
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:id="@+id/ml"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray"
app:layoutDescription="@xml/activity_main_scene"
tools:context=".MainActivity">

<com.google.android.material.card.MaterialCardView
android:id="@+id/bottomSheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardBackgroundColor="@android:color/black">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_red_dark"
android:padding="40dp">

<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="A button" />

</FrameLayout>

</com.google.android.material.card.MaterialCardView>

</androidx.constraintlayout.motion.widget.MotionLayout>
我可以包装 MaterialCardViewNestedScrollView那么因为 NestedScrollView将妥善处理 onInterceptTouchEvent ,它将起作用:
<androidx.constraintlayout.motion.widget.MotionLayout 
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:id="@+id/ml"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray"
app:layoutDescription="@xml/activity_main_scene"
tools:context=".MainActivity">

<androidx.core.widget.NestedScrollView
android:id="@+id/bottomSheet"
android:background="@android:color/holo_blue_dark"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardBackgroundColor="@android:color/black">

<!-- other views -->

</com.google.android.material.card.MaterialCardView>

</androidx.core.widget.NestedScrollView>

</androidx.constraintlayout.motion.widget.MotionLayout>
如果我像这样实现 MotionLayout,我将面临另一个问题。 MaterialCardView当用户向上拖动 View 时,高度不会改变,即使我将高度设置为 match_parent :
Second MotionLayout
如何以红色区域覆盖整个蓝色区域的方式更改代码?

最佳答案

最后,我找到了解决方案。我只需要添加

android:fillViewport="true"
到 NestedScrollView 来解决这个问题。发生这种情况是因为 NestedScrollView 在结束状态下的高度大于其子项的高度,所以我需要设置 fillViewporttrue解决问题。

关于android - OnSwipe dragUp 不适用于 MotionLayout 中的 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69649544/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com