I'm trying to draw this custom shape in the custom view. I must have a stroke and fill for this shape.
Now I made this with 2 shapes, but I haven't stroked of course:
rect.set(0, 0, width, height);
canvas.drawRoundRect(rect, cornerRadius, cornerRadius, paint);
path.moveTo(x, y);
...
path.close();
canvas.drawPath(path, paint);
How can I draw the full shape with stroke using Path, is it real?