文字出力 | feirisのブログ

feirisのブログ

ブログの説明を入力します。

package in.andante.android.helloworld;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class Hello extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        TextView text = new TextView(this);
        text.setText("Hello"); 
        setContentView(text); 
    }
}

以上。
赤文字部分でテキストを追加、追加テキストに"Hello"を入れる。
最後にsetContentViewでtextの中身を表示です。