绘制圆圈并注入其中的android字母

时间:2016-03-26 10:14:12

标签: android colors geometry

Like this

您好,我正在尝试开发一款Android应用 我想创建一个圆圈,并在这个圆圈中注入用户名字的第一个字母,就像图片一样。我该怎么做以及如何动态改变颜色。

1 个答案:

答案 0 :(得分:0)

您可以使用画布和绘画来绘制圆圈

Paint paint = new Paint(); 
Canvas canvas = new Canvas();
canvas.drawCircle(10, 10, 50, paint);

50是圆的半径。

在你的情况下,你想在圆圈内画一个字母来做这个

    //Add this to your above code.

   paint.setColor(Color.BLACK); //You can change it to any color you want.
paint.setTextSize(16); 
canvas.drawText("Username First letter goes here", x, y, paint); 

谢谢你,我希望这是有帮助的。