我想在我的应用中实现应用内浏览器。为了实现我在AlertDialog.Builder对象中使用WebView并显示它。
final AlertDialog.Builder alert = new AlertDialog.Builder(context);
现在我遇到了问题,我想让AlertDialog.Builder的标题显示加载页面的进度,所以我覆盖了onProgressChanged函数并尝试按如下方式重置标题:
wv.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
alert.setTitle("Loading..." + progress + "%");
tv.setText("Loading..." + progress + "%");
view.setVisibility(View.GONE);
if (progress == 100) {
alert.setTitle(title);// THIS DOES NOT HAVE ANY EFFECT
tv.setVisibility(View.GONE);//THIS IS "LOADING..." string, That I have written as make shift for the time being
view.setVisibility(View.VISIBLE);//This displays the WebView when it if loaded.
}
}
});
我希望AlertDialog.Builder标题动态更改。
答案 0 :(得分:5)
构建器仅用于第一次创建AlertDialog实例。在显示之前使用AlertDialog.create获取对话框实例的句柄,然后您可以set the title进行操作。