这让我发疯了。
我想我已经掌握了一切,但无论我做什么,在我将手指抬离视线之前,触摸似乎都被取消了。更奇怪的是,我可以绘制长水平线,但垂直线总是很短。
我使用的是三星G SII 2.3.3,但建设到2.1
Ant的想法?
我的示例代码:
package com.mycompany.myviews;
import java.util.ArrayList;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Point;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
public class CustomView extends View
{
private ArrayList<DrawPoint> points = new ArrayList<DrawPoint>();
public CustomView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public void addPoint(DrawPoint p)
{
points.add(p);
}
public boolean onTouchEvent (MotionEvent event)
{
DrawPoint p = new DrawPoint((int)event.getX(), (int)event.getY());
switch(event.getAction())
{
case android.view.MotionEvent.ACTION_DOWN:
p.start = true;
break;
case android.view.MotionEvent.ACTION_CANCEL:
Log.d("TouchView", "On Touch cancelled.");
break;
}
addPoint(p);
invalidate();
return true;
}
public void onDraw(Canvas c)
{
super.onDraw(c);
Path path = new Path();
for (int i = 0; i < points.size(); i++)
{
DrawPoint currentPoint = points.get(i);
if (currentPoint.start == true)
path.moveTo(currentPoint.p.x, currentPoint.p.y);
else
path.lineTo(currentPoint.p.x, currentPoint.p.y);
}
Paint paint = new Paint();
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(2);
paint.setColor(Color.BLACK);
c.drawPath(path, paint);
}
private class DrawPoint
{
public boolean start = false;
public Point p;
DrawPoint(int x, int y)
{
p = new Point(x, y);
}
}
}
更新:好的,我想出来了。由于此视图位于另一个视图中,因此父母或父母会拦截某些触摸。
我发现对我的需求足够好的解决方案是在ACTION_DOWN的案例中添加以下行:
getParent().requestDisallowInterceptTouchEvent(true);
这样我的观点就可以得到所有的接触。
答案 0 :(得分:0)
我编辑了我的答案......
我在Android Samples中找到了一个手指画示例,并在stackoverflow上讨论了该示例。希望这会帮助你。
Android FingerPaint Example using Canvas, what is the offscreen Canvas?
我原来的帖子......
我没有解决方案,但确实找到了可能会给你一些的网站 关于你能做什么的想法...
http://bestsiteinthemultiverse.com/2008/11/android-graphics-example/
答案 1 :(得分:0)
我发现对我的需求足够好的解决方案是在ACTION_DOWN的案例中添加以下行:
getParent().requestDisallowInterceptTouchEvent(true);
这样我的观点就可以得到所有的接触。