我有这些东西,在一个活动中,我将一个onTouchListener设置为我的ImageDraw,它扩展了ImageView类,使用这个监听器我执行缩放和平移手势等操作
但是在这个活动中我有一个按钮,但是当一个onClickListener设置为按钮时,我得到的是NullPointerException。
不设置onClickListener一切正常。
我的ImageDraw类是:
public class ImageDraw extends ImageView{
private Paint mPaint = new Paint();
List<Point> pts = new ArrayList<Point>() ;
public ImageDraw(Context context) {
super(context);
}
//used to send the location of the points to draw on the screen
//must be called before every redraw to update the points on the screen
public void SetPointsToDraw(List<Point> pts)
{
this.pts = pts;
}
public ImageDraw(Context context, AttributeSet attrs)
{
super(context,attrs);
}
public ImageDraw(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
}
@Override
public void onDraw(Canvas canvas)
{
super.onDraw(canvas);
Paint paintColor = mPaint;
paintColor.setColor(Color.YELLOW);
paintColor.setStrokeWidth(3);
if(pts.size() > 0)
{
canvas.drawCircle(pts.get(0).x, pts.get(0).y, 7, paintColor);
}
if (pts.size() > 1)
{
for (int i = 1 ; i < pts.size(); i++) {
paintColor.setColor(Color.YELLOW);
canvas.drawCircle(pts.get(i).x, pts.get(i).y, 7, paintColor);
paintColor.setColor(Color.RED);
canvas.drawLine(pts.get(i-1).x, pts.get(i-1).y, pts.get(i).x, pts.get(i).y, paintColor);
}
}
}
}
编辑:
这里是我将onClickListener设置为按钮的位置,以及它在此处的te excpetion。正好在btnNew.SetOnTouchListener
上 Button btnNew = (Button) findViewById(R.id.btnNew);
try
{
btnNew.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Intent intent = new Intent(getApplicationContext(), NewWaypoint.class);
startActivity(intent);
return false;
}
});
}
catch(Exception e)
{
String teste = e.toString();
}
答案 0 :(得分:0)
我现在最好的猜测是你没有在活动中设置内容视图。你可以发布你的堆栈跟踪和活动代码吗?
答案 1 :(得分:0)
我遇到了类似的问题,但我发现我忘了在活动中设置setcontent。希望它可以帮到你。