有没有办法隐藏或禁用位置栏中的URL字段?在我的情况下,设备是作为信息亭浏览器运行的平板电脑,因此只允许一个URL.
我通过将ChildBrowser.java中的代码更改为来修复此问题
private void navigate(String url) {
InputMethodManager imm = (InputMethodManager)this.ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edittext.getWindowToken(),0);
if (!url.startsWith("http")) {
this.webview.loadUrl("http://" + url);
}
this.webview.loadUrl("http://www.my-only-allowed-site.example.org");
this.webview.requestFocus();
}
这很好用,但不是很好.您仍然可以看到该网址.我希望有这些可能的解决方案:
1)完全隐藏URL字段
2)单击URL字段时隐藏软键盘
3)将URL字体颜色设置为黑色
任何的想法?
提前致谢
最佳答案
如果您修改插件的源代码,则可以通过修改插件的源代码来隐藏url字段和关闭按钮,并注释掉以下行:
原文链接:https://www.f2er.com/android/430522.htmltoolbar.addView(back); //shows the back button
toolbar.addView(forward); //shows the forward button
//toolbar.addView(edittext); //shows the URL - comment this line out to hide the URL
toolbar.addView(close); //shows the close button
编辑:哎呀,我刚从你的评论中看到你以同样的方式想出来了!