1
我想使用畫布在設備的中心繪製4個角邊緣。如何繪製4角邊緣設備的中心
像這樣
我想這
Paint myPaint = new Paint();
myPaint.setColor(Color.GREEN);
myPaint.setStyle(Paint.Style.STROKE);
canvas.drawRect(
getLeft()+(getRight()-getLeft())/4,
getTop()+(getBottom()-getTop())/4,
getRight()-(getRight()-getLeft())/4,
getBottom()-(getBottom()-getTop())/3,myPaint);
我的結果
使用[drawPath](https://developer.android.com/reference/android/graphics/Canvas.html# drawPath(android.graphics.Path,android.graphics.Paint)而不是drawRect。 – Blackbelt
使用矢量Drawable for this .. http://stackoverflow.com/a/40217644/6893465 –
...或一個簡單的9補丁 –