您好,登錄后才能下訂單哦!
這篇文章主要介紹“android怎么自定義滾動上下回彈scollView”,在日常操作中,相信很多人在android怎么自定義滾動上下回彈scollView問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”android怎么自定義滾動上下回彈scollView”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
這是一個(gè)自定義view,在xml布局中用這個(gè)view嵌套要使之可以上下回彈的view
就能實(shí)現(xiàn)布局可以滾動上下回彈了,自定義view代碼如下:
package com.loopfire.meitaotao.view.scrollView; import android.content.Context; import android.graphics.Rect; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.view.animation.Animation; import android.view.animation.Animation.AnimationListener; import android.view.animation.TranslateAnimation; import android.widget.ScrollView; /** * 上下回彈 scollView * * @author Administrator * */ public class MyScrollView extends ScrollView { private View inner; private float y; private Rect normal = new Rect(); private boolean animationFinish = true; public MyScrollView(Context context) { super(context); } public MyScrollView(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onFinishInflate() { if (getChildCount() > 0) { inner = getChildAt(0); } } @Override public boolean onInterceptTouchEvent(MotionEvent ev) { return super.onInterceptTouchEvent(ev); } @Override public boolean onTouchEvent(MotionEvent ev) { if (inner == null) { return super.onTouchEvent(ev); } else { commOnTouchEvent(ev); } return super.onTouchEvent(ev); } private void commOnTouchEvent(MotionEvent ev) { if (animationFinish) { int action = ev.getAction(); switch (action) { case MotionEvent.ACTION_DOWN: // System.out.println("ACTION_DOWN"); y = ev.getY(); super.onTouchEvent(ev); break; case MotionEvent.ACTION_UP: // System.out.println("ACTION_UP"); y = 0; if (isNeedAnimation()) { animation(); } super.onTouchEvent(ev); break; case MotionEvent.ACTION_MOVE: // System.out.println("ACTION_MOVE"); final float preY = y == 0 ? ev.getY() : y; float nowY = ev.getY(); int deltaY = (int) (preY - nowY); // 滾動 // scrollBy(0, deltaY); y = nowY; // 當(dāng)滾動到最上或者最下時(shí)就不會再滾動,這時(shí)移動布局 if (isNeedMove()) { if (normal.isEmpty()) { // 保存正常的布局位置 normal.set(inner.getLeft(), inner.getTop(), inner.getRight(), inner.getBottom()); } // 移動布局 inner.layout(inner.getLeft(), inner.getTop() - deltaY / 2, inner.getRight(), inner.getBottom() - deltaY / 2); } else { super.onTouchEvent(ev); } break; default: break; } } } // 開啟動畫移動 private void animation() { // 開啟移動動畫 TranslateAnimation ta = new TranslateAnimation(0, 0, 0, normal.top - inner.getTop()); ta.setDuration(200); ta.setAnimationListener(new AnimationListener() { @Override public void onAnimationStart(Animation animation) { animationFinish = false; } @Override public void onAnimationRepeat(Animation animation) { } @Override public void onAnimationEnd(Animation animation) { inner.clearAnimation(); // 設(shè)置回到正常的布局位置 inner.layout(normal.left, normal.top, normal.right, normal.bottom); normal.setEmpty(); animationFinish = true; } }); inner.startAnimation(ta); } // 是否需要開啟動畫 private boolean isNeedAnimation() { return !normal.isEmpty(); } // 是否需要移動布局 private boolean isNeedMove() { int offset = inner.getMeasuredHeight() - getHeight(); int scrollY = getScrollY(); if (scrollY == 0 || scrollY == offset) { return true; } return false; } }
在xml中使用如下:
<com.loopfire.meitaotao.view.scrollView.MyScrollView> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/text_margin_left2" android:text="@string/about" /> </com.loopfire.meitaotao.view.scrollView.MyScrollView>
那么包含的這個(gè)textview可以上下滾動并且回彈了
到此,關(guān)于“android怎么自定義滾動上下回彈scollView”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。