Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アルファベット AZ を描きたいのですが、アルファベットは特定のパスに描画する必要があります。そのため、2 点を調整して 2 点間のパスを作成し、ペイントを使用して 2 点を結合しようとしましたが、パスを作成できませんでした。 2 点間。パスの作成方法と 2 点の結合方法を誰か教えてもらえませんか?
2点を結ぶ実際の線のように?
キャンバス内:
Paint p = new Paint(); p.setColor(Color.RED); canvas.drawLine(x1, y1, x2, y2, p);