我正在尝试实施纸牌游戏,该游戏可以按某些类别进行分类。
我正在使用此开放源代码:https://github.com/chanjungkim/Swipecards。
这是布局:
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" >
<com.lorentzos.flingswipe.SwipeFlingAdapterView
android:id="@+id/frame"
android:background="@color/white"
android:layout_width="250dp"
android:layout_height="300dp"
app:rotation_degrees="15.5"
android:backgroundTint="#F00"
tools:context=".MyActivity" >
</com.lorentzos.flingswipe.SwipeFlingAdapterView>
<include layout="@layout/buttons" />
因此,似乎我需要在SwipeFlingAdapterView中实现垃圾箱(类别),因为在3中,卡片无法从视图中移出。
但是似乎不可能。如何实现此功能并“检测(更改其颜色)”垃圾箱并将数据放入其中?