Avoid semi circle below the action bar in Android, when reached the top after scrolling -
i need rid of semi circle shows when reach top, after scrolling/sliding/swiping. appears below action bar.
it using listviews, try setting overscroll mode over_scroll_never.
this can done programmatically calling:
mlistview.setoverscrollmode(view.over_scroll_never);
or directly in xml resource file:
<listview ... android:overscrollmode="never" />
Comments
Post a Comment