gpt4 book ai didi

android - 对 ConstraintLayout 中的 LayoutParams 更改进行动画处理

转载 作者:行者123 更新时间:2023-12-03 21:30:15 29 4
gpt4 key购买 nike

我正在创建应用程序,其中有带有 searchBar by this lib 的屏幕.
我的 Activity 布局如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.constraint.ConstraintLayout
android:id="@+id/wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:animateLayoutChanges="true">

<TextView
android:id="@+id/title"
android:textColor="@color/colorPrimary"
android:text="@string/mainScreenTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textAlignment="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:paddingTop="100dp"/>

<com.arlib.floatingsearchview.FloatingSearchView
android:id="@+id/searchView"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_marginTop="100dp"
android:animateLayoutChanges="true"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title"/>

</android.support.constraint.ConstraintLayout>

</RelativeLayout>

在那里我必须将 FloatingSearchingView 移动到屏幕顶部并将高度更改为例如 500dp - 像这样:
app:layout_constraintTop_toTopOf="parent"
android:layout_height="500dp"

稍后我将不得不将其移回并再次将高度更改为默认值
app:layout_constraintTop_toBottomOf="@+id/title"
android:layout_height="50dp"

问题是,我必须对其进行动画处理。我花了很多时间寻找解决方案,但不幸的是我没有找到任何东西。

最佳答案

我必须在 ConstraintLayout 中为 TextView 高度设置动画。

 <androidx.constraintlayout.widget.ConstraintLayout
...
android:animateLayoutChanges="true"
>

<TextView
...
我首先通知 ConstraintLayout 布局即将改变:
constraintlayout.getLayoutTransition().enableTransitionType(LayoutTransition.CHANGING);
然后更新 textView 高度(或任何其他参数)
textView.getLayoutParams().height = 200;
textView.requestLayout();
对于这样简单的事情,无需设置动画师或涉及其他库。

关于android - 对 ConstraintLayout 中的 LayoutParams 更改进行动画处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43851040/

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