我创建了2个Horizontal recycleView。这是完美的。我需要在每个recycleView中的项目之间拖放功能,以及在这两个recycleView项目之间拖放。我现在还做了什么 -
Input::json->all();
Request::json()->all();
file_get_contents("php://input");
自定义此库并获得我想要的东西。链接 - https://github.com/woxblom/DragListView
答案 0 :(得分:7)
如果您仍然对简单的解决方案感兴趣see my code on GitHub。它显示了Drag and Drop
两个RecyclerView
之间的class Test extends React.Component{
constructor(){
this.state={
myValue: ''
};
}
render(){
let {myValue} = this.state;
return(
<input
onChange={(event)=>{
this.setState({
myValue: event.target.value
});
}}
value={myValue}
placeholder="My Control"/>
);
}
}
。
答案 1 :(得分:0)
自定义此库并获得我想要的东西。链接 - https://github.com/woxblom/DragListView
我更新了什么 -
正如您所看到的,它是一个垂直的recyclelerView使用布局管理器,以便您可以使它成为Gird或Horizontal recylerView。在我的情况下,我有2个recyclerView和1个GridView。还调整了一些填充和布局。