Android ScrollViewとSeekBarを組み合わせて使用

2380 ワード

SeekBarでScrollViewのスクロール位置を制御し、ScrollViewのスクロール時にもSeekBarの角度を更新するには、ScrollViewを継承して新しいクラスを実装する必要があります.このクラスにSeekBarを実装することができますOnSeekBarChangeListenerインタフェース.
ScrollViewのonScrollChangedメソッドを上書きし、SeekBarを変更します.OnSeekBarChangeListenerインタフェースのonProgressChangedメソッド.キーコードは次のとおりです.
 int heightMeasure;
        @Override
        protected void onSizeChanged(int w, int h, int oldw, int oldh) {
            super.onSizeChanged(w, h, oldw, oldh);
            heightMeasure = getMeasuredHeight();
        }
        @Override
        protected void onScrollChanged(int l, int t, int oldl, int oldt) {
            super.onScrollChanged(l, t, oldl, oldt);
            // When the user scrolls, we hide navigation elements.
            if (heightMeasure == 0) {
                Toast.makeText(getContext(), "heightMeansu = 0", Toast.LENGTH_SHORT).show();
            } else {
                //  ScrollView     View   ,   ScorllView         
                View firstChildView = getChildAt(0);
                int firstChildViewHeight = firstChildView.getHeight();
                if(firstChildViewHeight==0){
                    Toast.makeText(getContext(), "firstChildViewHeight = 0", Toast.LENGTH_SHORT).show();
                }else{
                    //   ScrollView               SeekBar mSeekView  
                    int progress = (int) (t * 100.0f / (firstChildViewHeight- heightMeasure));
                    mSeekView.setOnSeekBarChangeListener(null);
                    mSeekView.setProgress(progress);
                    mSeekView.setOnSeekBarChangeListener(this);
                }
//                setNavVisibility(false);
            }
        }

        /**
         * SeakBar      ScrollView  
         * @param seekBar
         * @param progress
         * @param fromUser
         */
        @Override
        public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
            if (heightMeasure == 0) {
                Toast.makeText(getContext(), "heightMeansu = 0", Toast.LENGTH_SHORT).show();
            } else {
                View firstChildView = getChildAt(0);
                int firstChildViewHeight = firstChildView.getHeight();
                int y = (int) ((firstChildViewHeight - heightMeasure) * progress / 100.0f);
                scrollTo(0, y);
            }
        }