Create TextView from template XML file

前端 未结 1 988
执笔经年
执笔经年 2021-02-05 10:16

I have a template of simple TextView in a file simple_txt.xml




        
相关标签:
1条回答
  • 2021-02-05 11:22
    TextView txt = (TextView) View.inflate(this, R.layout.simple_txt, null);
    
    0 讨论(0)
提交回复
热议问题