允许通知 Android webview

Posted

技术标签:

【中文标题】允许通知 Android webview【英文标题】:Allow notifications Android webview 【发布时间】:2021-11-03 18:26:12 【问题描述】:

上下文 我正在尝试添加来自我的网站的推送通知。 我的代码:

MainActivity.java
package com.example.neurofinance;

import androidx.appcompat.app.AppCompatActivity;

import android.annotation.TargetApi;
import android.content.Context;
import android.net.http.SslError;
import android.os.Build;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.webkit.javascriptInterface;
import android.webkit.SslErrorHandler;
import android.webkit.WebResourceRequest;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Toast;



public class MainActivity extends AppCompatActivity 

    public class WebAppInterface 
        Context mContext;

        /** Instantiate the interface and set the context */
        WebAppInterface(Context c) 
            mContext = c;
        

        /** Show a toast from the web page */
        @JavascriptInterface
        public void showToast(String toast) 
            Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
        
    


    @Override
    public boolean onCreateOptionsMenu(Menu menu) 
        return true;
    

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        this.getWindow().getDecorView().setSystemUiVisibility(

                View.SYSTEM_UI_FLAG_LAYOUT_STABLE

                        | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION

                        | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN

                        | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION

                        | View.SYSTEM_UI_FLAG_FULLSCREEN);



        WebView webView = findViewById(R.id.webView);
        webView.addJavascriptInterface(new WebAppInterface(this), "Android");
        
        webView.getSettings().setDomStorageEnabled(true);

        webView.getSettings().setJavaScriptEnabled(true);



        webView.getSettings().setUseWideViewPort(true);//setting wide view
        webView.getSettings().setLoadWithOverviewMode(true);//setting default zoomed out view
        webView.setInitialScale(1);
        webView.getSettings().setBuiltInZoomControls(true);//setting zoom controls

        webView.loadUrl("www.URL.com");
        

        WebViewClient webViewClient = new WebViewClient() 

            @SuppressWarnings("deprecation") @Override

            public boolean shouldOverrideUrlLoading(WebView view, String url) 

                view.loadUrl(url);

                return true;

            

            @Override
            public void onReceivedSslError (WebView view, SslErrorHandler handler, SslError error) 
                handler.proceed();
            

            @TargetApi(Build.VERSION_CODES.N) @Override

            public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) 

                view.loadUrl(request.getUrl().toString());

                return true;

            
        ;

        webView.setWebViewClient(webViewClient);

        if (Build.VERSION.SDK_INT >= 21)
            webView.getSettings().setMixedContentMode( WebSettings.MIXED_CONTENT_ALWAYS_ALLOW );
    

AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.neurofinance">
    <uses-permission android:name="android.permission.INTERNET"/>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity"
            android:configChanges="orientation|keyboardHidden|screenSize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity">

    <WebView
        android:id="@+id/webView"
        android:layout_
        android:layout_
        />

</androidx.constraintlayout.widget.ConstraintLayout>

问题 我尝试了来自 post 的代码,但没有帮助。

但是,我认为我应该在某处允许通知。我试图在浏览器中打开我的网站,它实际上要求我的应用程序没有权限。 (左:浏览器,右:webview)

【问题讨论】:

代替你可以调用任何浏览器的意图 试试这个:***.com/questions/53991937/… 最好看看有没有别的。 【参考方案1】:

WebView 不支持网站用来显示通知的 API,而浏览器支持该 API。这就是您在浏览器中看到通知但在 WebView 中看不到的原因。 有关支持通知 API 的环境列表,请参阅 this page。

如果您的 WebView 显示您控制的网站,您可以修改该网站以使用其他机制来显示通知(通过一些 java 接口)。

【讨论】:

【参考方案2】:

这对你有用吗?

Android Push Notification not opening my activity with webview

https://github.com/ashraf-alsamman/android-webview-app-with-push-notification

https://medium.com/shibinco/creating-a-webview-android-app-with-push-notification-7fd48541a913

希望您可以通过其中一个示例使其工作

【讨论】:

【参考方案3】:

不确定我能提供多少帮助,但您可能使代码仅支持网站,而不支持实际应用。我自己是初学者,所以我知道的不多,但我认为这就是问题所在。

【讨论】:

正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。【参考方案4】:

我没有足够的“声誉”来发表评论,但这对你有用吗?

Android Push Notification with WebView?

https://github.com/ashraf-alsamman/android-webview-app-with-push-notification

https://medium.com/shibinco/creating-a-webview-android-app-with-push-notification-7fd48541a913

希望您可以通过其中一个示例使其工作

【讨论】:

以上是关于允许通知 Android webview的主要内容,如果未能解决你的问题,请参考以下文章

Android N Preview Notification API (通知)

Android N Preview Notification API (通知)

Android:不允许后台执行:接收意图

来自 Azure 网站的 Android 推送通知出现 401 错误

在 Android 上监听通知

Android - 推送通知