Recyclerview 实现双列表联动,列表悬停
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
implementation 'com.github.wustor:GangedRecyclerview:1.0.0'
Step 3. 启动GangedRvActivity
val intent = Intent(this, GangedRvActivity::class.java)
//获取SortBean数据,具体可参见Demo
val data = DataUtil.getData(this, path)
val bundle = Bundle()
bundle.putSerializable(IIntent.DATA_TAG, data)
intent.putExtras(bundle)
startActivity(intent)
暂无开放 Issues,或尚未同步最近议题。