Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 747|回复: 0

[实例教程]Android 触摸屏单击测试

[复制链接]

该用户从未签到

发表于 2011-10-22 12:49:51 | 显示全部楼层 |阅读模式
    我们今天要学习的就是android游戏开发必须对手机的各个设备非常了解。其中最重要的设备之一就是触摸屏。所以我们这里重点研究触摸屏的单击。

       我们直接看代码吧。这里是触摸屏单击的测试代码:

java代码: package eoe.gamedev;



import android.app.Activity;

import android.os.Bundle;

import android.util.Log;

import android.view.MotionEvent;

import android.view.View;

import android.view.View.OnTouchListener;

import android.widget.TextView;



public class SingleTouchTest extends Activity implements OnTouchListener{

StringBuilder builder = new StringBuilder();

TextView textView;

public void onCreate(Bundle state){

super.onCreate(state);

textView = new TextView(this);

textView.setText("Touch and Drag one finger");

textView.setOnTouchListener(this);

setContentView(textView);

}

public boolean onTouch(View arg0, MotionEvent arg1) {

builder.setLength(0);

switch(arg1.getAction()){

case MotionEvent.ACTION_DOWN: builder.append("down, ");

break;

case MotionEvent.ACTION_MOVE:

builder.append("move, ");

break;

case MotionEvent.ACTION_UP:

builder.append("up ,");

break;

case MotionEvent.ACTION_CANCEL:

builder.append("cancel, ");

break;

}

builder.append(arg1.getX());

builder.append(", ");

builder.append(arg1.getY());

Log.d("TouchTest",builder.toString());

textView.setText(builder.toString());

return true;

}



}
单击屏幕要实现OnTouchListener,实现public boolean onTouch(View arg0, MotionEvent arg1)方法。
MotionEvent有4个Action,分别是 MotionEvent.ACTION_DOWN, ACTION_UP, ACTION_MOVE, ACTION_CANCEL。

        意思分别是触摸屏按下,松开,移动,和取消。

java代码: <?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android=http://schemas.android.com/apk/res/android

package="eoe.gamedev"

android:versionCode="1"

android:versionName="1.0">



<uses-sdk android:minSdkVersion="10" />

<application

android:icon="@drawable/icon"

android:label="@string/app_name">

<activity

android:name=".AndroidBasis"

android:label="@string/app_name">

<intent-filter>

<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />

</intent-filter>

</activity>



<activity android:name=".LifeCycleTest" android:label="LifeCycleTest" android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".SingleTouchTest"

android:label="SingleTouchTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".MultiTouchTest"

android:label="MultiTouchTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".KeyTest"

android:label="KeyTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".AccelerometerTest"

android:label="AccelerometerTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".AssetsTest"

android:label="AssetsTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".ExternalStorageTest"

android:label="ExternalStorageTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".SoundPoolTest"

android:label="SoundPoolTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".MediaPlayerTest"

android:label="MediaPlayerTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".RenderViewTest"

android:label="RenderViewTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".BitmapTest"

android:label="BitmapTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

<activity

android:name=".FontTest"

android:label="FontTest"

android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation">

</activity>

</application>

<uses-permission android:name="android.permission.INTERNET"/>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>

<uses-permission android:name="android.permission.RECORD_AUDIO"/>



</manifest>
回复

使用道具 举报

该用户从未签到

发表于 2011-10-22 12:49:56 | 显示全部楼层

Re:[实例教程]Android

看起来不错,收着了~~
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-9 07:38 , Processed in 0.365110 second(s), 45 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表