Skip to content

Instantly share code, notes, and snippets.

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 chemickypes/4d426e03888113a17146fa0d87148de0 to your computer and use it in GitHub Desktop.
Save chemickypes/4d426e03888113a17146fa0d87148de0 to your computer and use it in GitHub Desktop.
Code fort Medium article 3
...
View newf = findFirstVisibleItem();
if(!newf.equals(f) ) {
f = newf;
for (int i = 0; i < getChildCount(); i++) {
View v = getChildAt(i);
v.setAlpha(v.equals(f)?1f:0.5f);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment