Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backpress,onItemClickListener #8

Merged
merged 5 commits into from
Jan 21, 2015
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
holders are updated
  • Loading branch information
orhanobut committed Jan 20, 2015
commit 2edefa13653b42ad25f1c4f16614f1ea9893a195
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ public boolean onKey(View v, int keyCode, KeyEvent event) {
if (keyListener == null) {
throw new NullPointerException("keyListener should not be null");
}
keyListener.onKey(v, keyCode, event);
return false;
return keyListener.onKey(v, keyCode, event);
}
});
return view;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ public boolean onKey(View v, int keyCode, KeyEvent event) {
if (keyListener == null) {
throw new NullPointerException("keyListener should not be null");
}
keyListener.onKey(v, keyCode, event);
return false;
return keyListener.onKey(v, keyCode, event);
}
});
headerContainer = (ViewGroup) view.findViewById(R.id.header_container);
Expand Down