WebView-Methoden nicht aufgerufen in android

Meiner Web-Ansicht nicht den Aufruf der javascript-Funktion es ist die Rückkehr Warnung wie unten. Kann jemand empfehlen, wie man loswerden der Warnung unten.

07-30 10:15:44.031: W/webview_proxy(3770): java.lang.Throwable: Warning: A WebView method was called on thread 'WebViewCoreThread'. All WebView methods must be called on the UI thread. Future versions of WebView may not support use on other threads.

Unten ist meine Funktion.

public boolean onLongClick(View v){
    System.out.println("dfdsf");
    //Tell the javascript to handle this if not in selection mode
    //if(!this.isInSelectionMode()){
        this.getSettings().setJavaScriptEnabled(true);
        this.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
        this.getSettings().setPluginsEnabled(true);
        this.loadUrl("javascript:android.selection.longTouch();");
        mScrolling = true;
        //this.setJavaScriptEnabled(true);
    //}


    //Don't let the webview handle it
    return true;
}
InformationsquelleAutor user1048958 | 2013-07-30
Schreibe einen Kommentar