Skip to content

Instantly share code, notes, and snippets.

@manas-raj-shrestha
Created May 31, 2017 08:40
Show Gist options
  • Save manas-raj-shrestha/000cbf5bec6024533ee2141c94a59c57 to your computer and use it in GitHub Desktop.
Save manas-raj-shrestha/000cbf5bec6024533ee2141c94a59c57 to your computer and use it in GitHub Desktop.
public void setOnClicks(GridLayout grid_layout) {
for (int i = 0; i < grid_layout.getChildCount(); i++) {
if (grid_layout.getChildAt(i) != null)
grid_layout.getChildAt(i).setOnClickListener(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment