gpt4 book ai didi

android - 左右动画回收器 View 项目以告诉用户滑动选项

转载 作者:行者123 更新时间:2023-11-29 22:35:33 25 4
gpt4 key购买 nike

我已经实现了一个手势来提示用户我们的 iOS 应用程序中的滑动选项。它看起来像-

enter image description here

我是 Android 应用开发的新手。除了动画之外,我已经实现了屏幕等所有内容。如何在 Android 应用程序中为回收站 View 项目添加相同的动画?

最佳答案

最后,我自己实现了。

这是item_layout.xml-

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<View
android:id="@+id/leftView"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_alignTop="@+id/main_layout"
android:layout_alignBottom="@id/main_layout"
android:layout_alignParentStart="true"
android:background="@color/darkGray" />

<View
android:id="@+id/rightView"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_alignTop="@+id/main_layout"
android:layout_alignBottom="@+id/main_layout"
android:layout_alignParentEnd="true"
android:background="@color/darkRed" />

<RelativeLayout id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
...
</RelativeLayout>

</RelativeLayout>

这是 RecyclerView.Adapter 实现-

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_layout, parent, false);

return new ViewHolder(view);
}

@Override
public void onBindViewHolder(final ViewHolder holder, int position) {
....
....

if (position == 0) {
ObjectAnimator animationLeft = ObjectAnimator.ofFloat(holder.swipeLayout, "translationX", 0f, 80f, 0f, -80f, 0f);
animationLeft.setDuration(1500);
animationLeft.start();
}
}

希望这对某人有帮助!

关于android - 左右动画回收器 View 项目以告诉用户滑动选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59526015/

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