前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Android view随触碰滑动效果

Android view随触碰滑动效果

作者头像
砸漏
发布2020-10-22 15:05:12
4990
发布2020-10-22 15:05:12
举报
文章被收录于专栏:恩蓝脚本

主要思路是通过父布局的onTouch(),方法,获取滑动到的位置和点击下的位置,再去设置子view的位置。我的代码中考虑了在边缘情况。需要注意的是,使用RelativeLayout,以imageView为例。从测试结果来看,bottomMargin 和rightMargin 性能非常差,最好还是用leftMargin与topMargin定位。

下面是运行效果:

这里写图片描述
这里写图片描述

布局文件里面就是一个Relativelayout中有一个ImageView。如下

代码语言:javascript
复制
<?xml version="1.0" encoding="utf-8"? 
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/relativeLayout"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context="com.xingyi.moveviewwithtouch.MainActivity" 
<ImageView
 android:id="@+id/imageView"
 android:layout_width="40dp"
 android:layout_height="40dp"
 android:background="@android:color/black"/ 
</RelativeLayout 

Java代码如下,这里考虑了边缘位置滑动的效果。如果考虑,在最左边缘imageView会有一半在屏幕之外,在最右边缘会缩小,直到看不见。

代码语言:javascript
复制
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 < halfWidth) {//左边缘
params.leftMargin = 0;//设置imageview到左端距离为0
} else if (x   widthRL- halfWidth) {
params.leftMargin = widthRL-widthImg;//设置imageview左端到左端端距离(params.rightMargin的性能非常糟糕)
} else {
params.leftMargin = (int) (x - halfWidth);//imageview左端到relativelayout左端距离
}
//设置竖直位置
if (y < halfHeight) {
params.topMargin = 0;
} else if (y   heightRL - halfHeight) {
params.topMargin = heightRL-widthImg;//params.bottomMargin的性能非常糟糕
} else {
params.topMargin = (int) (y - halfHeight);
}
view.setLayoutParams(params);
}
}

总结

以上所述是小编给大家介绍的Android view随触碰滑动效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对ZaLou.Cn网站的支持!

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档