I have a template of simple TextView
in a file 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>
In some code I need to create a TextView
from this template, something like:
TextView txt = new TextView(this);
txt.setLayout(R.layout.simple_txt);//???
then do something with it (setText
etc.). How can I create a TextView
like this?
TextView txt = (TextView) View.inflate(this, R.layout.simple_txt, null);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With