I have a simple helloworld app. I am trying to tell the Activity that a user clicked, "Cnn.com"

    WebViewClient wc = new WebViewClient() {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            if (url.equals("http://cnn.com/")) {
                //TELL ACTIVITY CNN WAS CLICKED
                return true;
            } else {
                return false;

            }
        }

    };

    mWebView.setWebViewClient(wc);

How would I do this.

(I am coming from a C# .NET background)

link|improve this question

how exactly you want tell the activity that? You want to show a dialog? you want to open another activity? you want to show a Toast? – Cristian Jul 14 '10 at 21:09
feedback

1 Answer

up vote 3 down vote accepted
public class YourActivity extends Activity{

    // bla bla bla

    // the code you already have
    WebViewClient wc = new WebViewClient() {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            if (url.equals("http://cnn.com/")) {
                YourActivity.this.tellMe();
                return true;
            } else {
                return false;

            }
        }

    };

    // this is the method to 'tell' the activity that someone clicked the link
    public void tellMe(){
        // in this case I just raise a toast.
        // but you can do whatever you want here ;)
        Toast.makeText(YourActivity.this, "eyy!! somebody clicked the cnn link", 1).show();
    }
}
link|improve this answer
+1 for eyy!! somebody clicked the cnn link – Pentium10 Jul 14 '10 at 21:16
hahahaha LOL! you are evil jajaja – Cristian Jul 14 '10 at 21:31
I actually like BBC news better, but this works and I'll give it the kudos :) – BahaiResearch.com Jul 15 '10 at 1:00
feedback

Your Answer

 
or
required, but never shown

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