I am currently building a News Aggregator App and I am using InAppBrowser for people to read the articles. Now, my questions is: Can I remove the URL and Navigation Bar? Als
If you want to keep the done/close button and remove everything else, keep location=yes:
var ref = window.open('http://apache.org', '_blank', 'location=yes');
and make changes in the inappbrowser.java file:
toolbar.addView(close);
close.setText("Done");
if (getShowLocationBar()) {
main.addView(toolbar);}
Remove the editText and actionButtonContainer. Hope it helps.