안 드 로 이 드 개발 실현 반등 효과 모방 IOS 반등 scrollview 튜 토리 얼 상세 설명
9180 단어 androidiosscrollview반등
이것 은 ios 의 반등 효과 입 니 다.물론 우리 안 탁 중 은 이런 효 과 를 이 루 려 면 그렇게 딱딱 하지 않 고 끝까지 굴 러 갈 때.당연 하 다
scrollview 를 사용 하면 실현 할 수 없습니다.그래서 스크롤 뷰 를 계승 할 view 를 새로 만들어 야 합 니 다.
package davidbouncescrollview.qq986945193.com.davidbouncescrollview;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.animation.TranslateAnimation;
import android.widget.ScrollView;
/**
* @author :
* @ :http://weibo.com/mcxiaobing
* @GitHub:https://github.com/QQ986945193
* @CSDN : http://blog.csdn.net/qq_21376985
* @ Qq :986945193
* : scrollview
*/
public class BounceScrollView extends ScrollView {
private View inner;// View
private float y;// y
private Rect normal = new Rect();// ( , .)
private boolean isCount = false;//
public BounceScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
/***
* XML . , . onFinishInflate
* , , .
*/
@SuppressLint("MissingSuperCall")
@Override
protected void onFinishInflate() {
if (getChildCount() > 0) {
inner = getChildAt(0);
}
}
/***
* touch
*/
@Override
public boolean onTouchEvent(MotionEvent ev) {
if (inner != null) {
commOnTouchEvent(ev);
}
return super.onTouchEvent(ev);
}
/***
*
*
* @param ev
*/
public void commOnTouchEvent(MotionEvent ev) {
int action = ev.getAction();
switch (action) {
case MotionEvent.ACTION_DOWN:
break;
case MotionEvent.ACTION_UP:
// .
if (isNeedAnimation()) {
animation();
isCount = false;
}
break;
/***
* , y , MotionEvent.ACTION_DOWN ,
* MyScrollView touch LIstView item . .
* , 0. .
* https://github.com/QQ986945193
*/
case MotionEvent.ACTION_MOVE:
final float preY = y;// y
float nowY = ev.getY();// y
int deltaY = (int) (preY - nowY);//
if (!isCount) {
deltaY = 0; // 0.
}
y = nowY;
// ,
if (isNeedMove()) {
//
if (normal.isEmpty()) {
//
normal.set(inner.getLeft(), inner.getTop(),
inner.getRight(), inner.getBottom());
}
// Log.e("jj", " :" + inner.getLeft() + "," + inner.getTop()
// + "," + inner.getRight() + "," + inner.getBottom());
//
inner.layout(inner.getLeft(), inner.getTop() - deltaY / 2,
inner.getRight(), inner.getBottom() - deltaY / 2);
}
isCount = true;
break;
default:
break;
}
}
/***
*
*/
public void animation() {
//
TranslateAnimation ta = new TranslateAnimation(0, 0, inner.getTop(),
normal.top);
ta.setDuration(200);
inner.startAnimation(ta);
//
inner.layout(normal.left, normal.top, normal.right, normal.bottom);
// Log.e("jj", " :" + normal.left + "," + normal.top + "," + normal.right
// + "," + normal.bottom);
normal.setEmpty();
}
//
public boolean isNeedAnimation() {
return !normal.isEmpty();
}
/***
* inner.getMeasuredHeight():
* <p/>
* getHeight():
* <p/>
* https://github.com/QQ986945193
*
* @return
*/
public boolean isNeedMove() {
int offset = inner.getMeasuredHeight() - getHeight();
int scrollY = getScrollY();
// Log.e("jj", "scrolly=" + scrollY);
// 0 ,
if (scrollY == 0 || scrollY == offset) {
return true;
}
return false;
}
}
그리고 그의 용법 은 바로 ScrollView 의 용법 과 같다.예 를 들 어 레이아웃 에서 직접 참조:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="davidbouncescrollview.qq986945193.com.davidbouncescrollview.MainActivity">
<davidbouncescrollview.qq986945193.com.davidbouncescrollview.BounceScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text=" , " />
</LinearLayout>
</davidbouncescrollview.qq986945193.com.davidbouncescrollview.BounceScrollView>
</LinearLayout>
마지막 으로 직접 운행 하면 위의 효 과 를 볼 수 있다.(AndroidStudio 버 전)github 다운로드 주소:
https://github.com/QQ986945193/DavidBounceScrollView
위 에서 말 한 것 은 소 편 이 소개 한 안 드 로 이 드 개발 실현 에 반등 효과 가 있 습 니 다.IOS 반등 scrollview 튜 토리 얼 에 대한 상세 한 설명 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.