Android textview html font size tag

后端 未结 3 2091
盖世英雄少女心
盖世英雄少女心 2021-02-01 03:35

I use tag in android textview like this

resultTextView.setText(Html.fromHtml(\"T         


        
3条回答
  •  广开言路
    2021-02-01 03:50

    Try this one,Its working for me,use small,big key words

    TextView mBox = (TextView) findViewById(R.id.txt);
        mBox.setText(Html.fromHtml("" + ""
                + "Hiiiiiiiiii" + "" + "
    " + "" + "description" + "" + "
    " + "" + "DateAdded" + ""));

提交回复
热议问题