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

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -