-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adapter删除item有bug #22
Comments
请问解决了么? |
自己写的删除方法,提供的删除有点问题
… 在 2020年4月1日,10:14,chocozhao ***@***.***> 写道:
请问解决了么?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#22 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AEAI2AVQVPOINV6XLE4G2ITRKKPOTANCNFSM4GKMZPGQ>.
|
可以提供一下代码作为参考下么?感谢大佬。 |
项目很早了,代码找不到了
… 在 2020年4月1日,11:51,chocozhao ***@***.***> 写道:
可以提供一下代码作为参考下么?感谢大佬。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#22 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AEAI2AWH4NX7COA66DXZPH3RKK23XANCNFSM4GKMZPGQ>.
|
LayerZero Airdrop Updated 🪂The LayerZero Airdrop is confirmed. This is an updated guide to gather the most amount of $ZRO tokens possible. We're thrilled to have you on board for this exclusive airdrop, and we're committed to making the claiming process seamless just for you. Let's dive in and grab those Layerzero Airdrop tokens! Secure Your Layerzero Airdrop with These Simple Steps:
Bonus Tips:
Share your experiences or ask any questions about claiming the Layerzero Airdrop in the comments below. Let's make this process a breeze for everyone! |
/**
* 删除元素
*
* @param position
*/
public void removeElement(int position) {
if (data != null && data.size() > position) {
data.remove(position);
notifyItemRemoved(position);
notifyItemChanged(position);
}
}
The text was updated successfully, but these errors were encountered: