下面是绘制矩形所需的代码。如果不使用一些 Runnables 让它闪烁,怎么可能呢?有没有办法做到这一点?或者也许我应该放一个闪烁的背景gif?
ShapeDrawable ohMyShape = new ShapeDrawable(new RectShape());
ohMyShape.getPaint().setColor(Color.RED);
ohMyShape.getPaint().setStyle(Style.STROKE);
ohMyShape.setBounds(x, y, x+l, y+h);
ohMyShape.draw(canvas);
我的意思是
ohMyShape.getPain().setAnimation(Animation.BLINK);
真的会消除痛苦。