I'm interested in knowing an animated view's current location at any given time. What's the best way to handle this?
int[] loc = new int[2];
MyListView.this.findViewById(R.id.tvTop).getLocationInWindow(loc);
final int tvTopX = loc[0];
Log.e("---xLocation---", Integer.toString(tvTopX));
This seems to trace the same value, even after an animation. Do I need to invalidate or something to get the location value to update? Thanks, any help is appreciated!