Skip to content

Instantly share code, notes, and snippets.

@J1aDong
Last active December 28, 2016 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save J1aDong/9a2c71e565ab6452c2facfbe23733d69 to your computer and use it in GitHub Desktop.
Save J1aDong/9a2c71e565ab6452c2facfbe23733d69 to your computer and use it in GitHub Desktop.
禁止recyclerView滑动
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(context) {
@Override
public boolean canScrollVertically() {
return false;
}
};
recyclerview.setLayoutManager(linearLayoutManager);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment