iOS like over scroll effect on Android

后端 未结 3 2046
南旧
南旧 2021-01-31 19:58

I want to implement the iOS-like bounce overscroll effect in my app.

I came across this link which suggests creating a custom ScrollView. But the problem is

3条回答
  •  隐瞒了意图╮
    2021-01-31 20:21

    Use this

    Private ScrollView scrMain;
    
    scrMain = (ScrollView) v.findViewbyId(R.id.scrMain);
    
    OverScrollDecorHandler.setScrollView(scrMain); 
    

提交回复
热议问题