我想创建一个带有监听器的视图,它有点像容器或杂货袋.拖入其中的任何图像或文本都会被收集并保存到本地数据库中.或者更确切地说,图像名称或字符串被保存.我之前创建了自定义视图,显示了一个自定义的数据行,但我不知道如何创建一个“杂货袋”类型的视图.我搜索过谷歌创建一个带有监听器的自定义容器视图但找不到与我要查找的内容有关的任何内容.我不是要求任何人为我做这件事,只是给我一些建议或推进正确的方向.
编辑
只是为了澄清一点.我已经知道如何拖放视图了.问题是你可以放在任何地方.我想要的是一个视图,当某个东西在其边界内被删除时,它会获得视图的字符串或标记.无论可能是什么样的观点.不知何故,这个自定义视图必须知道在其边界内删除了哪种视图,并在drop上删除该视图.
解决方法
<view class="at.calista.quatscha.views.SwipebarLayout" android:id="@+id/sbl" android:layout_width="fill_parent" android:layout_height="fill_parent"> <!-- Top View --> <Button android:text="Top" android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> <!-- Bottom View --> <Button android:text="Bottom" android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>