MockViewpublic class MockView extends android.widget.TextView Base class for mocked views.
TODO: implement onDraw and draw a rectangle in a random color with the name of the class
(or better the id of the view). |
Methods Summary |
---|
public void | onDraw(android.graphics.Canvas canvas)
canvas.drawARGB(0xFF, 0x7F, 0x7F, 0x7F);
super.onDraw(canvas);
|
|