Skip to content

Instantly share code, notes, and snippets.

View J1aDong's full-sized avatar

J1aDong J1aDong

View GitHub Profile
@J1aDong
J1aDong / gist:9a2c71e565ab6452c2facfbe23733d69
Last active December 28, 2016 05:22
禁止recyclerView滑动
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(context) {
@Override
public boolean canScrollVertically() {
return false;
}
};
recyclerview.setLayoutManager(linearLayoutManager);