gpt4 book ai didi

android - 是否可以使用具有不同过渡的运动布局?

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:01 27 4
gpt4 key购买 nike

我试图根据点击的按钮在不同的地方显示一个 View 。但是当我在其中使用两个时,MotionScene 不工作。

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

<Transition android:id="@+id/toTimePicker2"
motion:duration="500" motion:constraintSetStart="@layout/add_event_fragment"
motion:constraintSetEnd="@id/enableTimePicker2">
<OnClick motion:target="@+id/time_to" motion:mode="toggle"/>
</Transition>

<Transition android:id="@+id/toTimePicker1"
motion:constraintSetStart="@layout/add_event_fragment"
motion:constraintSetEnd="@id/enableTimePicker1"
motion:duration="500">
<OnClick motion:target="@+id/time_from"
motion:mode="toggle" />
< /Transition >

有谁知道如何使用运动布局来实现它?看起来我应该在代码中使用 ConstraintSet,但我只想知道这是否可能与 Motion 一起使用

最佳答案

经过数小时的尝试不同的事情,我终于发现了为什么它不适合我。我知道这一定是可能的,因为谷歌提供了一个具有多个转换的示例 https://github.com/googlesamples/android-ConstraintLayoutExamples/blob/multi_state/motionlayout/src/main/res/xml/scene_26.xml .但无论我尝试什么,只有 xml 文件中的第一个转换有效。我最终意识到,为了让转换起作用,UI 的当前状态必须与约束集中定义的转换的开始或结束状态相匹配。不仅如此,您不能多次定义相同的约束集,这意味着如果您在初始屏幕上可以发生两个不同的转换,则两个转换都需要共享约束集。

我创建了一个简单的示例,其中包含两个随不同翻译移动的按钮。我在任何地方都找不到这方面的简单示例,所以希望这对某些人有所帮助。正如您将在视频中看到的,当 left to right 文本向右移动时,您无法将 top to bottom 文本移动到底部,因为状态未在转换中定义。

最后,我遇到的最后一个问题是每个约束集似乎都必须包含作为转换一部分的每个 View ,无论它是否处于当前转换中。否则 View 似乎只是随机移动。

enter image description here

布局如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.motion.widget.MotionLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main"
app:layoutDescription="@xml/motion_scene"
tools:context=".MainActivity">

<TextView
android:id="@+id/left_to_right_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Left to right"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<TextView
android:id="@+id/top_to_bottom_text"
android:text="Top to bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

</androidx.constraintlayout.motion.widget.MotionLayout>

这是MotionScene

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


<Transition
app:constraintSetStart="@id/base"
app:constraintSetEnd="@id/bottom">
<OnClick
app:targetId="@id/top_to_bottom_text">

</OnClick>

</Transition>

<Transition
app:constraintSetStart="@id/base"
app:constraintSetEnd="@id/right">
<OnClick
app:targetId="@id/left_to_right_text">

</OnClick>

</Transition>


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

<Constraint
android:id="@id/left_to_right_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<Constraint
android:id="@id/top_to_bottom_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</ConstraintSet>

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

<Constraint
android:id="@id/left_to_right_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<Constraint
android:id="@id/top_to_bottom_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
/>
</ConstraintSet>

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

<Constraint
android:id="@id/left_to_right_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<Constraint
android:id="@id/top_to_bottom_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</ConstraintSet>
</MotionScene>

关于android - 是否可以使用具有不同过渡的运动布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52971516/

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