I'm new in Android world and of course in this community. I'm searching a way to import my data table from excel file in a scrollable textview. Therefore, since I already tried this html solution :
String htmlText = "html formatted text"
TextView htmlTextView = (TextView)findViewById(R.id.html_text);
htmlTextView.setText(Html.fromHtml(htmlText));
This solution is half-working.The html formatted code isn't displayed properly and the effort to translate every table (about 300 tables) in html code is too high.
I can't find any other good solution. Please give me some tips to do this stuff.
Thanks.