禁止scrollView內佈局變化自動滾動

public class InScrollView extends ScrollView {

    public InScrollView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public InScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public InScrollView(Context context) {
        super(context);
    }
    

//禁止scrollView內佈局變化自動滾動
    @Override
    protected int computeScrollDeltaToGetChildRectOnScreen(Rect rect) {
        return 0;
    }

}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章