I would like to implement a list view as shown below. 
Apparently this is a WearableListView with a CircledImageView. However, I cannot find which function allows me to determine the average view. I also want to be able to make the animation "size up" on the new and "size down" on the old selected ... Right now I tried the basic onscroll, but not the cigar.
mListView.addOnScrollListener(new WearableListView.OnScrollListener() { @Override public void onScroll(int i) { Log.d("Recycler","Scroll: "+i); } @Override public void onAbsoluteScrollChange(int i) { Log.d("Recycler","ABsScrollChange: "+i); } @Override public void onScrollStateChanged(int i) { Log.d("Recycler","ScrollState: "+i); } @Override public void onCentralPositionChanged(int i) { Log.d("Recycler","Center: "+i); } });
EDIT: Okay, so now I know how to find the center. But I was wondering if anyone figured out how to extract the current view so that I can change the currently selected view.
EDIT 2 Now I can change the selected view. However, you do not know how to correctly remove properties after the object is canceled.
source share