通过拖放传递数据的全面证明方式是什么?
在我的情况下,我有两个列表,我可以将元素从一个拖到另一个。 因此,我们拖动的列表已经包含与之关联的数据。 从我搜索到的通常的方式是通过视图setTag()和getTag()方法存储数据。这也是我要做的,但由于两个列表都使用了视图持有者模式,因此实际数据将存储在持有者中。然后将持有者设置为视图标记。 但是我也听说你永远不应该在视图或持有者中存储数据(即使在列表适配器中使用视图持有者模式)。
那么将数据从一个列表传递到另一个列表的最佳方法是什么?
答案 0 :(得分:0)
尝试将数据存储在根活动或片段中:
public class MyActivity extends Activity
{
private ListView list1;
private ListView list2;
private int dragPosition;
...
protected class myDragEventListener implements View.OnDragListener {
// This is the method that the system calls when it dispatches a drag event to the
// listener.
public boolean onDrag(View v, DragEvent event) {
// Defines a variable to store the action type for the incoming event
final int action = event.getAction();
// Handles each of the expected events
switch(action)
{
case DragEvent.ACTION_DRAG_STARTED:
// save the position in one list
dragPosition = somePosition;
return true;
case DragEvent.ACTION_DROP:
//do what you want with other list
return true;
}
}
}
也许,this会有所帮助。