カーブしたテキストをカウンタークロックで描画したい。これまで私はカーブしていただけです。このコードではカーブしたテキストの代わりにクロックを描く時計の代わりにカウンタークロックを描く
public class TextDrawActivity extends AppCompatActivity {
@Override protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new TextDrawingView(this));
}
static class TextDrawingView extends View {
private Path arc;
private RectF bounds;
private TextPaint textPaint;
public TextDrawingView(Context context) {
super(context);
arc = new Path();
bounds = new RectF();
textPaint = new TextPaint();
textPaint.setAntiAlias(true);
textPaint.setTextSize(50);
textPaint.setColor(Color.BLACK);
}
@Override public void draw(Canvas canvas) {
super.draw(canvas);
bounds.set(0f, 0f, getWidth() * 0.8f, getHeight()/2.f);
arc.rewind(); // Clear internal structure.
arc.addArc(bounds, 45, 360);
canvas.drawTextOnPath("Lorem ipsum dolor sit amet, consectetur adipisicing elit.",
arc, 0, textPaint.getTextSize()/2.f, textPaint);
}
}
}
、それは次のようになります:
それはもう逆さまになりませんので、どのように私は賢明なテキストのカウンタクロックを描くことができますか?
あなたは 'PATH' [反時計回り](https://developer.androidを初期化するためにtriend持っています。 com/reference/android/graphics/Path.Direction.html)? – azizbekian
@azizbekian方向性のあるaddArcのオーバーロードはありません – Niklas
[this](https://hemantvc.blogspot.de/2016/10/text-curve-clockwise-and-anticlockwise_95.html)が役立つと思います。 – azizbekian