如何“拖放”到视图中?

时间:2018-11-18 08:15:50

标签: android drag-and-drop swipe google-play-games

我正在尝试实施纸牌游戏,该游戏可以按某些类别进行分类。


enter image description here enter image description here


  1. 第一张照片是我目前的情况。
  2. 我要实现的是第二个。

enter image description here

  1. 我遇到的第一个问题。

我正在使用此开放源代码: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中,卡片无法从视图中移出。

但是似乎不可能。如何实现此功能并“检测(更改其颜色)”垃圾箱并将数据放入其中?

0 个答案:

没有答案