I want to set different title for alert dialog when WebView page is loaded but its not working.

here is the code snippet:

final AlertDialog.Builder alert = new AlertDialog.Builder(
        mContext);
// alert.setTitle("Loading...");
final WebView wv = new WebView(mContext);

wv.loadUrl("http://10.0.51.133/androidview/");
wv.getSettings().setJavaScriptEnabled(true);
wv.setVerticalScrollBarEnabled(false);

WebViewClientLoader loader= new WebViewClientLoader(alert);
wv.setWebViewClient(loader);
wv.setWebViewClient(new WebViewClient() {

    @Override
    public void onPageFinished(WebView view, String url) {
        // TODO Auto-generated method stub
        alert.setTitle("Loading...");
        super.onPageFinished(view, url);
    }

    @Override
    public void onPageStarted(WebView view, String url,
            Bitmap favicon) {
        // TODO Auto-generated method stub
        alert.setTitle("Finished");
        super.onPageStarted(view, url, favicon);
    }
});

private class webviewclient extends WebViewClient{

}

wv.loadUrl("file:///android_asset/Like.html");
alert.setView(wv);

alert.show();
link|improve this question

40% accept rate
1  
iDroid's answer works for me. have you try it ? or got any sollution ? If yes then please accept the answer with the Best Solution. – Android_Developer Feb 23 at 7:08
@niks accept answer please if you solved your problem – Sameer May 21 at 5:42
feedback

4 Answers

Its perfectly work..i am posting after checking-------

public class MyActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    WebView web=new WebView(this);
    web.setWebViewClient(new WebViewClient(){

        @Override
        public void onLoadResource(WebView view, String url) {
            super.onLoadResource(view, url);
        }

        @Override
        public void onPageFinished(WebView view, String url) {
            super.onPageFinished(view, url);
            alert.setTitle("Pages Finished");
        }

        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon) {
            super.onPageStarted(view, url, favicon);
            alert.setTitle("Pages Started");
        }

    });
    web.setWebChromeClient(new WebChromeClient(){

    });
    web.loadUrl("http://www.google.com");
    builder=new AlertDialog.Builder(this);
    builder.setView(web);
    builder.setTitle("Loading...");
    alert=builder.create();
    alert.show();
}
AlertDialog alert;
Builder builder;
@Override
protected void onDestroy() {
    super.onDestroy();

}

@Override
protected void onPause() {
    super.onPause();
}

}

enter image description here

and then it changes to

enter image description here

link|improve this answer
1  
I think this will solve your problem surely..do not care about background...Good luck – Sameer Feb 22 at 12:19
1  
@nikhil:consider me for bounty if you like my answer – Sameer Feb 23 at 4:42
feedback

You just have use the method setCustomTitle, when create os start to load the webview.

Then, when onLoadCompleted, you can setCustomTitle again to the second one.

Here is the reference

link|improve this answer
feedback

See this Example: THIS LINK

After implementing that you have to set the different value for the alert title based on the execution. So It shows the different Dialog based on the Webview is loading.

See this example for how it works and how to implement it.

Enjoy. :)

link|improve this answer
would you give more example – niks Feb 23 at 8:00
this example works in my case. Is it works for you or not ? – iDroid Explorer Feb 23 at 10:41
i need more examples plz – niks Feb 23 at 11:22
OK let me see if any more . . – iDroid Explorer Feb 24 at 11:00
feedback

I think before you call alert.show(), you should call alert.create(). This should solve your problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.