Answers for "how to put html text inside the textview in android studio"

1

set html text android java

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    textView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>", Html.FROM_HTML_MODE_COMPACT));
} else { 
    textView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));
}
Posted by: Guest on April-12-2020
2

set textview text android java

//java,set textview text android studio,2021/09.23
TextView textView;

textView = findViewById(R.id.textView); //in your OnCreate() method
textView.setText("Hello World");
Posted by: Guest on September-23-2021

Code answers related to "how to put html text inside the textview in android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language