本文介绍了Android的动态壁纸触摸事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚开始与Android,我正在做一个简单的动态壁纸。我在一个2.1模拟器测试它。麻烦的是,同时它的工作原理在preVIEW屏幕上选择之前设置壁纸触摸事件不会出现在屏幕上注册,一旦你选择了它作为墙纸。我需要在清单注明任何有关触摸事件左右得到它的工作?有点困惑,为什么它会工作在一个,而不是其他。
公共无效handleTouchEvent(MotionEvent事件){
如果(event.getAction()== MotionEvent.ACTION_UP){
//添加新BulletHole
INT X =(int)的event.getX();
INT Y =(INT)event.getY();
同步(孔){
holes.add(新BulletHole(X,Y));
}
}
this.pause = FALSE;
同步(本){
通知();
}
}
解决方案
@覆盖
公共无效的onCreate(SurfaceHolder surfaceHolder){
super.onCreate(surfaceHolder);
//默认情况下,我们没有得到触摸事件,所以启用它们。
setTouchEventsEnabled(真正的);
}
???这是否缝帮助?
I've just started with Android, I'm making a simple Live wallpaper. I'm testing it on a 2.1 emulator. The trouble is while it works in the preview screen before you choose "Set Wallpaper" the touch events don't appear to register on the screen once you've selected it as a wallpaper. Do I need to state anything in the manifest about touch events or so to get it to work? Little bit confused why it would work in one and not the other.
public void handleTouchEvent(MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_UP) {
//add new BulletHole
int x = (int)event.getX();
int y = (int)event.getY();
synchronized(holes) {
holes.add(new BulletHole(x,y));
}
}
this.pause = false;
synchronized(this) {
notify();
}
}
解决方案
@Override
public void onCreate(SurfaceHolder surfaceHolder) {
super.onCreate(surfaceHolder);
// By default we don't get touch events, so enable them.
setTouchEventsEnabled(true);
}
??? Does this seam to help?
这篇关于Android的动态壁纸触摸事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!