I am trying to load my html file which is located in the raw folder (android) to a textview. i tried to simply copy the content of my html file to a String variable and just put it in this syntax:
MyTextView.setText(Html.fromHtml(myStringVariable));
the problem is the content is too long. is there another way to do this.
Requirement: 1. The app should be able to view the content of the HTML file on the TextView
note: the html file has 1346 lines of code.