码迷,mamicode.com
首页 > 移动开发 > 详细

【Android开发学习笔记】【第十课】运动事件 之——触摸屏

时间:2015-01-21 16:29:16      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

概念


触摸屏 (TouchScreen) 和 滚动球(TrackBall)是Android 中除了键盘之外的主要输入设备。

而这两个事件都可以用运动事件(MotionEvent)用于接收他们的信息

 

直接看代码吧


package com.example.motion;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;

import android.view.MotionEvent;
import android.widget.TextView;


public class MainActivity extends ActionBarActivity 
{
    TextView mAction = null;
    TextView mPostion=null;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        mAction = (TextView)findViewById(R.id.action);
        mPostion = (TextView)findViewById(R.id.position);     
    }
    
    public boolean onTouchEvent(MotionEvent event)   
    {
        int action = event.getAction();
        float x = event.getX();
        float y = event.getY();
        mAction.setText("action: "+ action);
        mPostion.setText("pos: \nx:"+x + "   \ny:"+y);
        return true;        
    }
}

 

 

看一看结果啊


action代表当前按下屏幕的状态:

MotionEvent.ACTION_DOWN 为 0

MotionEvent.ACTION_UP      为  1

MotionEvent.ACTION_MOVE  为 2 

 

另外 x, y就代表了当前按下的横纵坐标

技术分享技术分享技术分享

 

【Android开发学习笔记】【第十课】运动事件 之——触摸屏

标签:

原文地址:http://www.cnblogs.com/by-dream/p/4239187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!