My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

package com.beanie.samples.jquery.client;

import android.webkit.JsResult;
import android.webkit.WebChromeClient;
import android.webkit.WebView;

public class SampleChromeClient extends WebChromeClient
{
@Override
public boolean onJsAlert(WebView view, String url, String message, JsResult result)
{
url = "Sample App Alert";
return super.onJsAlert(view, url, message, result);
}

}

Change log

r26 by coomar.101 on Oct 19, 2010   Diff
Initial commit
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 416 bytes, 17 lines
Powered by Google Project Hosting