gpt4 book ai didi

android - 顺利从芯片组中移除一个安卓芯片

转载 作者:行者123 更新时间:2023-12-03 23:35:35 25 4
gpt4 key购买 nike

在我正在开发的应用程序 fragment 之一中,我让用户创建各种 筹码 每个筹码都代表一种选择。我能够 动画 芯片创作。

现在,当用户点击芯片时,我将其从组中删除。我能够将自定义动画与删除相关联(参见 gif),但是当“中间芯片”被删除时,右边的芯片 突然动左侧,动画结束时。

enter image description here

版面:

       <HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="@dimen/horizontal_scroll_height"
android:scrollbars="none">

<com.google.android.material.chip.ChipGroup
android:id="@+id/rouletteChipList"
style="@style/Widget.MaterialComponents.ChipGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingStart="@dimen/chip_horizontal_margin"
android:paddingEnd="@dimen/chip_horizontal_margin"
app:chipSpacing="@dimen/chip_spacing"
app:singleLine="true">

</com.google.android.material.chip.ChipGroup>
</HorizontalScrollView>

芯片删除:
private void removeChip(final Chip chip) {
@SuppressWarnings("ConstantConditions") final ChipGroup optionsList = getView().findViewById(R.id.ChipList);
// Remove the chip with an animation
if (chip == null) return;
final Animation animation = AnimationUtils.loadAnimation(getContext(), R.anim.chip_exit_anim);
chip.startAnimation(animation);
chip.postDelayed(new Runnable() {
@Override
public void run() {
optionsList.removeView(chip);
}
}, 400);
}

芯片布局:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.chip.Chip xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/placeholder"
android:textAlignment="center"
app:chipBackgroundColor="@color/grayTranslucent"
app:rippleColor="?colorAccent" />

我想要一个 流畅的动画 ,当删除“中间筹码”时,筹码平稳地向左移动。我尝试了几件事,但没有运气。

最佳答案

如果你的意思是这样的

animate remove chips

我已将其添加到 HSV 中并添加了 android:animateLayoutChanges="true"chip_group ,见下面代码

<HorizontalScrollView
android:scrollbars="none"
.
>
<com.google.android.material.chip.ChipGroup
android:id="@+id/chip_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:animateLayoutChanges="true">

</com.google.android.material.chip.ChipGroup>

</HorizontalScrollView>

在我的代码中,我已将芯片动态添加到此 chip_group .
val newChip = Chip(this, null, R.attr.chipStyle)
newChip.text = "text"
newChip.isClickable = true
newChip.isFocusable = true
newChip.setOnClickListener(chipClickListener)
chip_group.addView(newChip)

并且有一个 onClickListener在每个chip.inside上我开始一个淡入淡出动画和 onAnimationEnd做一个 removeViewchip_group
private val chipClickListener = View.OnClickListener {

val anim = AlphaAnimation(1f,0f)
anim.duration = 250
anim.setAnimationListener(object : Animation.AnimationListener {
override fun onAnimationRepeat(animation: Animation?) {}

override fun onAnimationEnd(animation: Animation?) {
chip_group.removeView(it)
}

override fun onAnimationStart(animation: Animation?) {}
})

it.startAnimation(anim)
}

关于android - 顺利从芯片组中移除一个安卓芯片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58403377/

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