(Canvas canvas, int width, int height, float dpi, int xpos, int ypos)
| 91 | } |
| 92 | |
| 93 | @Override |
| 94 | public void draw(Canvas canvas, int width, int height, float dpi, int xpos, int ypos) { |
| 95 | if (width < 700) { width = 700; } |
| 96 | if (height < 700) { height = 700; } |
| 97 | drawTabbar(canvas, width, height); |
| 98 | drawToolbar(canvas, width, height); |
| 99 | drawLeft(canvas, width, height, dpi); |
| 100 | drawRight(canvas, width, height, dpi); |
| 101 | drawCanvas(canvas, width, height, dpi, xpos, ypos); |
| 102 | } |
| 103 | |
| 104 | public void drawTabbar(Canvas canvas, int width, int height) { |
| 105 | try (Paint fill = new Paint(); |
nothing calls this directly
no test coverage detected