TextView
ファイルに単純なテンプレートがありますsimple_txt.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:textSize="18sp" >
</TextView>
一部のコードではTextView
、このテンプレートから次のようなものを作成する必要があります。
TextView txt = new TextView(this);
txt.setLayout(R.layout.simple_txt);//???
それを使って何かをします(setText
など)。どうすればTextView
このようなものを作成できますか?