0

如何为 Bitmap 设置 onTouchListener。例如

   pongball = BitmapFactory.decodeResource(getResources(), R.drawable.pongball);
4

1 回答 1

2

将位图对象包装到视图中,例如ImageView

imageView.setImageBitmap(pongball);

然后将触摸侦听器设置为 ImageView:

imageView.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View arg0, MotionEvent arg1) {
        return false;
    }
});
于 2013-01-05T22:27:28.223 回答