gpt4 book ai didi

android:animateLayoutChanges 在更改 TextView 的 maxLines 时在 RecyclerView 中不起作用

转载 作者:行者123 更新时间:2023-11-29 17:16:31 28 4
gpt4 key购买 nike

我有一个简单的设置:RecyclerView 显示一个项目列表,每个项目包含几个 TextView。其中一个 TextView 可以有多行,最初我将 android:maxLines 设置为 1。在项目的点击监听器中,我在最大 1 行和最大无限行之间切换(以显示完整内容)。它工作正常,除了它不是动画。我尝试将 android:animateLayoutChanges 添加到我的 View 层次结构中的不同级别,但仍然没有动画。

请让我知道您对此的看法。

注意:我可以编写手动动画,但我希望 Android 使用此 xml 属性为我处理它。


我的一些代码:

我的列表项布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rootCard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:animateLayoutChanges="true"
android:padding="10dp">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp">

<TextView
android:id="@+id/destination"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginEnd="36dp"
android:layout_marginRight="36dp"
android:textStyle="bold"
android:ellipsize="end"
android:maxLines="1"
android:textSize="25sp" />

<ImageButton
android:id="@+id/editButton"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_edit"
android:contentDescription="@string/edit_button_content_descr"
android:background="?attr/selectableItemBackgroundBorderless" />
</RelativeLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:id="@+id/dateRange"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="17sp" />

<Space
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"/>

<TextView
android:id="@+id/daysLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:background="@drawable/days_left_background"
android:gravity="end"
android:layout_gravity="end"
android:textColor="@android:color/white"
android:textSize="15sp"
android:textStyle="bold"/>
</LinearLayout>

<TextView
android:id="@+id/comments"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textSize="15sp"
android:ellipsize="end"
android:maxLines="1" />
</LinearLayout>

</android.support.v7.widget.CardView>

在我的 View 持有者中,我正在扩展 comments TextView:

    rootCard.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
comments.setMaxLines((comments.getMaxLines() == 1) ? Integer.MAX_VALUE : 1);
}
});

这是我包含 RecyclerView 的 fragment 的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/common_vertical_margin"
android:paddingLeft="@dimen/common_horizontal_margin"
android:paddingRight="@dimen/common_horizontal_margin"
android:paddingTop="@dimen/common_vertical_margin"
xmlns:tools="http://schemas.android.com/tools">

<android.support.v7.widget.RecyclerView
android:id="@+id/tripList"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/list_item_trip" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_add" />

</RelativeLayout>

最佳答案

您没有调用适配器的 notifyItemChanged(),因此 Android 不知道某些内容已更改并且应该设置动画。因此,您只需在更改 maxLines 属性后添加此方法调用:

rootCard.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
comments.setMaxLines((comments.getMaxLines() == 1) ? Integer.MAX_VALUE : 1);
notifyItemChanged(viewHolder.getAdapterPosition());
}
});

如果它不起作用,请尝试将 animateLayoutChanges 设置为布局的 Root View - 在您的情况下为 CardView

关于android:animateLayoutChanges 在更改 TextView 的 maxLines 时在 RecyclerView 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38610368/

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