我使用以下代码自动滚动了卧式回收站视图。
private final Runnable SCROLLING_RUNNABLE = new Runnable() {
@Override
public void run() {
recyclerViewDate.smoothScrollBy(pixelsToMove, 0);
setDateValue();
mHandler.postDelayed(this, duration);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_center_item_finder);
txtSelected=(TextView)findViewById(R.id.txtSelected);
getRecyclerviewData();
mHandler.postDelayed(SCROLLING_RUNNABLE, 100);
}
但是在滚动时,我无法单击回收站项目。 找到了这个解决方案,创建了一个自定义的recyclerview。 Android - the item inside RecyclerView can't be clicked after scroll 仍然点击不起作用。