Androidの開発は、リバウンド効果のあるシミュレーションIOSリバウンドscrollview教程を実現しました。
8974 ワード
まず、今日の最終実現の効果図を見せます。
これはiosでのリバウンド効果です。もちろん、私達の安卓中でこの効果を実現したいなら、そんなに硬くないと思います。もちろんです
scrollviewを使うと実現できません。だから私達は新しいviewを建ててSrollViewを受け継ぐ必要があります。
(Android Studio版)githubダウンロードアドレス:
https://github.com/QQ986945193/DavidBounceScrollView
以上は小编が绍介したAndroid开発がリバウンド効果を持つ模仿IOSリバウンドscrollviewチュートリアルを実现しました。皆さんのために役に立つことを望んでいます。ここでも私たちのサイトを応援してくれてありがとうございます。
これはiosでのリバウンド効果です。もちろん、私達の安卓中でこの効果を実現したいなら、そんなに硬くないと思います。もちろんです
scrollviewを使うと実現できません。だから私達は新しいviewを建ててSrollViewを受け継ぐ必要があります。
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;
}
}
そして彼の使い方はSrollViewと同じです。レイアウトに直接引用する場合:
<?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>
最後に直接運転すれば上の効果が見られます。(Android Studio版)githubダウンロードアドレス:
https://github.com/QQ986945193/DavidBounceScrollView
以上は小编が绍介したAndroid开発がリバウンド効果を持つ模仿IOSリバウンドscrollviewチュートリアルを実现しました。皆さんのために役に立つことを望んでいます。ここでも私たちのサイトを応援してくれてありがとうございます。