1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-29 13:26:50 +01:00

Pebble: webview. Ensure we are on the main thread for disposing the webview and implement sending messages to the webview.

This commit is contained in:
Daniele Gobbetti 2017-01-01 21:01:58 +01:00
parent f175701825
commit 4ef0415da2

View File

@ -5,8 +5,12 @@ import android.content.Context;
import android.content.Intent;
import android.content.MutableContextWrapper;
import android.net.Uri;
import android.os.Build;
import android.os.Handler;
import android.os.Looper;
import android.webkit.ConsoleMessage;
import android.webkit.JavascriptInterface;
import android.webkit.ValueCallback;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
@ -83,13 +87,37 @@ public class WebViewSingleton extends Activity {
return instance;
}
public static void appMessage(final String message) {
new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
instance.evaluateJavascript("Pebble.evaluate('appmessage',[{'payload':" + message + "}]);", new ValueCallback<String>() {
@Override
public void onReceiveValue(String s) {
LOG.debug("Callback from showConfiguration", s);
}
});
} else {
instance.loadUrl("javascript:Pebble.evaluate('appmessage',[{'payload':" + message + "}]);");
}
}
});
}
public static void disposeWebView() {
new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
if (instance != null) {
instance.destroy();
instance = null;
contextWrapper = null;
jsInterface = null;
}
}
});
}
private static class GBChromeClient extends WebChromeClient {
@Override