文字を表示させる方法はたくさんありますが、
TextViewを使う最も簡単な方法を紹介いたします。
●サンプルソース
メインアクティビティファイルに下記ソースを
package com.example.textview.test; import android.os.Bundle; import android.app.Activity; import android.widget.TextView; public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // TextView のインスタンスを作成 TextView textView = new TextView(getApplicationContext()); // テキストビューのテキストを設定 textView.setText("HelloWorld"); //画面に表示 setContentView(textView); } }●実行結果
少し応用して
文字のサイズを変える。
背景をかえる
に挑戦してみましょう
●サンプルソース
package com.example.textview.test; import android.os.Bundle; import android.app.Activity; import android.widget.TextView; public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // TextView のインスタンスを作成 TextView textView = new TextView(getApplicationContext()); // テキストビューのテキストを設定 textView.setText("HelloWorld"); //テキストビューの背景を設定 textView.setBackgroundResource(R.drawable.ic_launcher); //文字サイズを設定 textView.setTextSize(100f); //画面に表示 setContentView(textView); } }
●実行結果
背景のセンス×ですが。。。。
意図したとおりに完成いたしました!
textview.set.....
で、サイズや背景以外にも
いろいろな設定ができるので、
是非、挑戦してみてください。
0 件のコメント:
コメントを投稿