bbottema / rtf-to-html

RTF to HTML conversion done right
8 stars 5 forks source link

Can't show text #11

Closed AenaQadeer closed 5 months ago

AenaQadeer commented 2 years ago

String html = converter.rtf2html(path.toString()); Log.d("txtresult",path.toString()); Log.d("txtresult",html);

    WebView webView;
    webView=findViewById(R.id.rtf);
    WebSettings webSettings = webView.getSettings();
    webSettings.setAllowContentAccess(true);
    webSettings.setAllowFileAccess(true);
    webView.loadUrl(html);
    webView.requestFocus();

I am trying but nothing show on screen. Can u help? @bbottema