显示吐司时,Android Web视图得到刷新

时间:2015-06-18 07:01:24

标签: android webview android-toast

您好我正在开发我正在使用BroadcastReceiver和一个Activity的Android应用程序。在我的活动中,我正在加载WebView。所以,当我在广播接收器中显示吐司时,我的WebView被重新加载了。

final static BroadcastReceiver onComplete = new BroadcastReceiver() {
    public void onReceive(Context context, Intent intent) {
      showToast(context, message, duration);
}

和内部活动

WebView view = new WebView(this);
    view.setWebViewClient(new WebViewClient());
    view.getSettings().setJavaScriptEnabled(true);
    view.loadUrl(url);

所以每当吐司出现时,它会重新加载我的webview。需要一些帮助。此问题不会出现在所有设备上。但是来一些Android设备。

public static void showToast(Context context, String message, int duration) {
    Toast.makeText(context, message, duration).show();
}

0 个答案:

没有答案