相对于多点触摸,单点触摸还是很简单的。 新建一个工程,先看看布局文件: <RelativeLayout xmlns:Android="Http://schemas.a
相对于多点触摸,单点触摸还是很简单的。
新建一个工程,先看看布局文件:
<RelativeLayout 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: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="com.example.touchevent.MainActivity" >
<ImageView
android:id="@+id/iv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/jiafeimao"
android:scaleType="matrix" />
</RelativeLayout>
就一个简单的ImageView,一会我们将在Activity中移动这个ImageView:
public class MainActivity extends Activity {
private ImageView iv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
iv = (ImageView) this.findViewById(R.id.iv);
iv.setOnTouchListener(new OnTouchListener() {
private float x;
private float y;
// 用来操作图片的模型
private Matrix oldMatrix = new Matrix();
private Matrix newMatrix = new Matrix();
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) { // 判断操作类型
case MotionEvent.ACTION_DOWN:
//按下时记住x,y的坐标
x = event.getX();
y = event.getY();
oldMatrix.set(iv.getImageMatrix());
break;
case MotionEvent.ACTION_MOVE://移动时
//用另一个模型记住按下时的位置
newMatrix.set(oldMatrix);
//移动模型
newMatrix.setTranslate(event.getX()-x, event.getY()-y);
break;
}
//把图片放入移动后的模型中
iv.setImageMatrix(newMatrix);
return true;
}
});
}
}
就是这么简单。
原文链接:http://blog.csdn.net/u012702547/article/details/45749107
源码下载:单点触摸
您可能感兴趣的文章:解析Android开发中多点触摸的实现方法android中处理各种触摸事件的方法浅谈android 多点触摸图片缩放的具体实现方法Android修改源码解决Alertdialog触摸对话框边缘消失的问题简单讲解Android开发中触摸和点击事件的相关编程方法Android实现手势滑动多点触摸放大缩小图片效果Android实现手势滑动多点触摸缩放平移图片效果Android应用开发中触摸屏手势识别的实现方法解析Android中SurfaceView和view画出触摸轨迹解决Android SurfaceView绘制触摸轨迹闪烁问题的方法
--结束END--
本文标题: Android基础知识之单点触摸
本文链接: https://lsjlt.com/news/24852.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0