I want to slow the scrolling speed of smoothScrollToPosition that i have used with listview.
I need to slow the list after a button click
here is an sample of my Code:
`Handler handler = new Handler();
handler.postDelayed(new Runnable()
{
public void run()
{
systemApsLv.setVisibility(View.VISIBLE);
systemApsLv.post(new Runnable()
{
@Override
public void run()
{
systemApsLv.smoothScrollToPosition(systemApsLv.getCount()-1);
// systemApsLv.setFriction(ViewConfiguration.getScrollFriction() * 1);
}
});}}`