gpt4 book ai didi

android - Recycler 查看点击动画

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:49:07 26 4
gpt4 key购买 nike

我正在尝试添加一些点击动画 as shown here在我的回收者看来,但没有成功。这是我的一些代码。

在我的 Activity 中

@Override
protected void onCreate(Bundle savedInstanceState) {
...
mRecyclerView = (RecyclerView) findViewById(R.id.recycler_view);
ItemOffsetDecoration itemDecoration = new ItemOffsetDecoration(this, R.dimen.card_item_offset);
mRecyclerView.addItemDecoration(itemDecoration);

mLayoutManager = new LinearLayoutManager(this);
mRecyclerView.setLayoutManager(mLayoutManager);

mAdapter = new CustomAdapter(this);
mRecyclerView.setAdapter(mAdapter);
}

在我的 ViewHolder 中

public CustomViewHolder(View itemView) {
super(itemView);
this.itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
/* on click stuff here */
}
});
}

在我的 CardView.xml 中

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_loading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp"
android:clickable="true"
android:background="?android:attr/selectableItemBackground">

<TextView
android:id="@+id/card_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

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

不确定问题出在哪里,但提前感谢您的帮助 =)

最佳答案

这就是所谓的波纹效果,你正在尝试用背景而不是前景

android:focusable="true"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"

你也可以自定义

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/colorcode">

<item
android:id="@android:id/mask"
android:drawable="@color/colorcode" />
</ripple>

要支持旧版本你可以这样做

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="@color/colorcode" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/colorcode" />
</shape>
</item>
</selector>

关于android - Recycler 查看点击动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40509161/

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