gpt4 book ai didi

android - MotionLayout 忽略填充

转载 作者:行者123 更新时间:2023-12-04 23:53:39 27 4
gpt4 key购买 nike

我正在尝试在滑动时为 textview 的边距、填充和 alpha 设置动画。开始时,textview 没有填充,alpha 为 1。最后,我希望 alpha 为 0,padding 为 100dp,边距为 16dp dp,alpha 为 0.5一切正常,除了填充没有改变。MotionLayout 是否支持填充?我正在使用 androidx.constraintlayout:constraintlayout:2.0.0-beta4。

添加更多文本,因为 SO 说我的帖子看起来主要是代码...添加更多文本,因为 SO 说我的帖子看起来主要是代码......添加更多文字,因为 SO 说我的帖子看起来主要是代码......

布局xml:

    <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/layoutParent"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutDescription="@xml/test">

<TextView
android:id="@+id/fakenavigationBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:text="hello world">
</TextView>
</androidx.constraintlayout.motion.widget.MotionLayout>

运动场景:

<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:motion="http://schemas.android.com/apk/res-auto">

<ConstraintSet android:id="@+id/start">
<Constraint
android:id="@id/fakenavigationBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="1"
android:padding="100dp"
motion:layout_constraintTop_toTopOf="parent"
motion:layout_constraintStart_toStartOf="parent">
</Constraint>

</ConstraintSet>

<ConstraintSet android:id="@+id/end">
<Constraint
android:id="@id/fakenavigationBar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:alpha="0.5"
motion:layout_constraintStart_toStartOf="parent"
motion:layout_constraintEnd_toEndOf="parent"
motion:layout_constraintBottom_toBottomOf="parent">
</Constraint>

</ConstraintSet>

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

<OnSwipe
motion:touchAnchorId="@+id/fakenavigationBar"
motion:touchAnchorSide="top"
motion:dragDirection="dragDown"/>
</Transition>
</MotionScene>

enter image description here enter image description here

最佳答案

我承认这不是一个很有帮助的答案,但我在填充方面遇到了同样的问题。边距似乎适用于 MotionLayout,但它似乎不支持填充。为了使我的工作有点像我想要的那样,我所做的是将我的 MotionLayout 文件中的填充添加到我想要的任何 View 。它尊重该文件中的填充,但不尊重运动场景约束集中的填充,因此在我的情况下无法为填充设置动画。它只会保留 MotionLayout 文件中设置的静态填充,这足以满足我的需求。

它似乎来自 this blog post如果您将动态场景过渡设置在两个不同的布局之间而不是 ConstraintSet,则可能会在填充之间设置动画。

我已经向一些不同的资源询问了一个问题,关于为什么 MotionLayout 不支持填充,如果我得到任何有用的信息,我会更新我的答案,但据我所知,动画填充值在 MotionLayout 中不受支持。

关于android - MotionLayout 忽略填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59976595/

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