”文字列・テキストの表示”
■文字列の表示
○クラス
Canvas(android.graphics.Canvas)
○書式
void drawText(String text, int x, int y, Paint paint) 機能:文字列の描画 引数:text テキスト x X座標 y Y座標 paint 描画指定 |
---|
public void onDraw(Canvas canvas) { cancas.drawText("Hello World!",10,10,new paint()); } |
---|
■テキストの表示
○クラス
TextView(android.widget.TextView)
○例
TextView tv = new TextView(this); tv.setText("テキスト"); setContentView(tv); |
---|
Designed by CSS.Design Sample