我有一张带有四张卡片的CardScrollView,当用户点击时,它会显示一个菜单,其中包含一个选项:“删除卡片”。 然后,当用户再次点击时,它必须删除当前卡并转到下一张卡。
如果我们看到“拍照”应用程序,当您拍摄照片是卡片然后点击查看菜单并选择“删除”时,这很容易理解。它会删除图像并跳转到下一张图片。
不确定它在Take a picture app中是如何工作的,因此我无法在我的应用中重新创建相同的效果。
我正在使用List来持卡。
答案 0 :(得分:0)
要从CardScrollView中删除卡片:
想象一下,你有一张卡片列表(mCards)和一个扩展CardScrollAdapter(适配器)的类。
mCards.remove(currentCard); // Remove the current card selected from the list of Cards
adapter.notifyDataSetChanged(); // Notify the adapter that needs to update the data