WearableListView.OnCenterProximityListener
  public
  static
  
  
  interface
  WearableListView.OnCenterProximityListener
  
  
  
| android.support.wearable.view.WearableListView.OnCenterProximityListener | 
      This interface is deprecated.
    for centering and snapping your list items consider using the WearableRecyclerView supported by a SnapHelper or the LinearSnapHelper.
     For scaling and otherwise modifying the list items based on their location on the screen
     consider using an WearableRecyclerView.ChildLayoutManager or the CurvedChildLayoutManager.
  
Interface for receiving callbacks when WearableListView children become or cease to be the central item.
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        void | 
      onCenterPosition(boolean animate)
      Called when this view becomes central item of the WearableListView. | 
| 
        abstract
        
        
        
        
        void | 
      onNonCenterPosition(boolean animate)
      Called when this view stops being the central item of the WearableListView. | 
Public methods
onCenterPosition
public abstract void onCenterPosition (boolean animate)
Called when this view becomes central item of the WearableListView.
| Parameters | |
|---|---|
| animate | boolean: Whether you should animate your transition of the View to become the central
     item. If false, this is the initial setting and you should transition immediately. | 
onNonCenterPosition
public abstract void onNonCenterPosition (boolean animate)
Called when this view stops being the central item of the WearableListView.
| Parameters | |
|---|---|
| animate | boolean: Whether you should animate your transition of the View to being non central
     item. If false, this is the initial setting and you should transition immediately. | 
