我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
这样的?