Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am using webview in my android app. i want to get title of current page shown in webview. i am using following code to do that

webView.setWebViewClient(new WebViewClient(){
    public void onPageFinished(WebView view, String url) {
        TextView t=(TextView)findViewById(R.id.title); 
        t.setText(view.getTitle());
    }
}

This code works but not always. Sometimes it doesn't show the title. sometimes it shows title of previous page. Whats wrong here??

share|improve this question
3  
Increase your accept rate. – Praveen Jul 10 '12 at 6:15
try to check before Textview Settext view.getTitle() is empty! or call load url after check view.getTitle()! – Dinesh Jul 10 '12 at 6:16
@spk just did that.. – user1092153 Jul 10 '12 at 6:16
Call it after loadUrl and check. – iNan Jul 10 '12 at 6:17
1  
Yes, i agree with you. The previous page only shown for me. – Praveen Jul 10 '12 at 7:05

2 Answers

Check this code, am getting web page title

webview.loadUrl("https://www.google.co.in/");

    webview.setWebViewClient(new WebViewClient() {


        public void onPageFinished(WebView view, String url) {

            String name = webview.getTitle();
            Log.v("Title",name);
        }
    });
share|improve this answer
+1 Yes, this is working. But, showing Toast continuously. – Praveen Jul 10 '12 at 7:10
Toast.makeText(getApplicationContext(),text,Toast.LENGTH_LONG).show(); sugg@ : don't put frequently updating things in Toast, it takes 2 seconds to update. – vishwa Jul 10 '12 at 7:51
When i use it and browse 4-5 pages i get title of previous page. – user1092153 Jul 10 '12 at 20:00

The WebChromeClient will give you the web page title faster than the WebViewClient

webview.loadUrl("https://www.google.co.in/");

   webview.setWebChromeClient(new WebChromeClient() {
                @Override
                public void onReceivedTitle(WebView view, String sTitle) {
                    super.onReceivedTitle(view, sTitle);
                    if (sTitle != null && sTitle.length() > 0) {
                        title.setText(sTitle);
                    } else {
                        title.setText("Web Page");
                    }
                }
            });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.