Skip to content

Instantly share code, notes, and snippets.

@donthorp
Created July 9, 2009 05:15
Show Gist options
  • Save donthorp/143446 to your computer and use it in GitHub Desktop.
Save donthorp/143446 to your computer and use it in GitHub Desktop.
// Determine Activity Size
layout = new ViewAnimator(this){
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
Log.i(LCAT, "Width: " + w + " Height: " + h);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment