Android view随触碰滑动效果
来源:爱站网时间:2020-06-16编辑:网友分享
安卓开发中view在实际开发中是很重要的,不管是自定义空间还是用户体验,都需要认真实施的功能,接下来,就让爱站技术频道小编来讲解Android view随触碰滑动效果,具体操作方法请大家参考下文。
安卓开发中view在实际开发中是很重要的,不管是自定义空间还是用户体验,都需要认真实施的功能,接下来,就让爱站技术频道小编来讲解Android view随触碰滑动效果,具体操作方法请大家参考下文。
主要思路是通过父布局的onTouch(),
方法,获取滑动到的位置和点击下的位置,再去设置子view的位置。我的代码中考虑了在边缘情况。需要注意的是,使用RelativeLayout,以imageView为例。从测试结果来看,bottomMargin 和rightMargin 性能非常差,最好还是用leftMargin与topMargin定位。
下面是运行效果:
布局文件里面就是一个Relativelayout中有一个ImageView。如下
Java代码如下,这里考虑了边缘位置滑动的效果。如果考虑,在最左边缘imageView会有一半在屏幕之外,在最右边缘会缩小,直到看不见。
package com.xingyi.moveviewwithtouch; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.MotionEvent; import android.view.View; import android.widget.ImageView; import android.widget.RelativeLayout; public class MainActivity extends AppCompatActivity { ImageView imageView; RelativeLayout relativeLayout; int heightRL,widthRL; int halfHeight,halfWidth; boolean first=true; private int widthImg; private int heightImg; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); } //初始化视图 private void initView() { imageView = (ImageView) findViewById(R.id.imageView); relativeLayout = (RelativeLayout) findViewById(R.id.relativeLayout); //获取滑动瞬间位置和点击瞬间位置,并移动imageview relativeLayout.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View view, MotionEvent motionEvent) { switch (motionEvent.getAction()) { case MotionEvent.ACTION_MOVE: moveView(imageView, motionEvent.getX(), motionEvent.getY()); break; case MotionEvent.ACTION_DOWN: getWidthAndHeight(); moveView(imageView, motionEvent.getX(), motionEvent.getY()); break; default: break; } return true; } }); } //因为不能在初始化视图时获得长宽,而每次计算一次长宽又影响性能 private void getWidthAndHeight(){ if(first){ widthRL=relativeLayout.getWidth(); heightRL=relativeLayout.getHeight(); widthImg=imageView.getWidth(); heightImg=imageView.getHeight(); halfWidth = imageView.getWidth() / 2;//imageView宽度的一半 halfHeight = imageView.getHeight() / 2;//imageView高度的一半 first=false; } } //滑动瞬间,将x和y分别作imageView的中心点到relativeLayout最左和顶端距离 private void moveView(View view, float x, float y) { RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) view.getLayoutParams(); //设置水平位置 if (x widthRL- halfWidth) { params.leftMargin = widthRL-widthImg;//设置imageview左端到左端端距离(params.rightMargin的性能非常糟糕) } else { params.leftMargin = (int) (x - halfWidth);//imageview左端到relativelayout左端距离 } //设置竖直位置 if (y heightRL - halfHeight) { params.topMargin = heightRL-widthImg;//params.bottomMargin的性能非常糟糕 } else { params.topMargin = (int) (y - halfHeight); } view.setLayoutParams(params); } }
以上就是爱站技术频道小编带给大家的Android view随触碰滑动效果,我们介绍了很多操作方法,总有一个介绍是符合你的胃口,还在等什么呢?赶紧关注js.aizhan.com吧!