gpt4 book ai didi

android - 连接检查在 Android Oreo Kotlin 中不起作用

转载 作者:搜寻专家 更新时间:2023-11-01 08:24:01 25 4
gpt4 key购买 nike

尝试在网络更改时调用名为 NetworkReceiver 的广播接收器。 Java 中的相同代码可以工作,但在 Kotlin 中尝试时却不起作用。当连接发生或连接丢失时,接收器永远不会被调用。我试图在模拟器中做到这一点。启动完成时也不会调用接收器。我也在 Android Oreo 上测试这个,即 Android 8.0

NetworkReceiver.kt
class NetworkReceiver : BroadcastReceiver() {

override fun onReceive(context: Context, intent: Intent) {
Logs.v("onReceive")
val connectivityManager = context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
val networkInfo = connectivityManager.activeNetworkInfo
if (networkInfo != null && networkInfo.detailedState == NetworkInfo.DetailedState.CONNECTED) {
Logs.v("Network Connected")

} else if (networkInfo != null) {
val state = networkInfo.detailedState
Logs.v("NetworkReceiver", state.name)
} else {
Logs.v("Network Connected")
}
}
}

Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.android.client">

<!-- To auto-complete the email text field in the login form with the user's emails -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />


<application
android:name=".application.App"
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">

<receiver android:name=".network.NetworkReceiver">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
</intent-filter>
</receiver>

<activity
android:name=".views.activities.kt.LoginActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

<activity
android:name=".views.activities.kt.DashboardActivity"
android:label="@string/title_activity_dashboard"
android:theme="@style/AppTheme.NoActionBar" />

<activity android:name=".views.activities.kt.ConfigurationActivity"
android:label="@string/title_activity_configuration"
android:theme="@style/AppTheme.NoActionBar"/>


</application>

</manifest>

最佳答案

在 Oreo 中,广播接收器的行为发生了变化,它受到了更多的限制。我很惊讶你说“它在 java 中工作”。

无论如何,您都需要 read up关于“奥利奥”的变化。您的应用中缺少一些东西。您需要在接收器的 list 中设置 android:enabled="true" 并且您需要调用...

registerReceiver(MyNetworkReceiver(), IntentFilter("android.net.conn.CONNECTIVITY_CHANGE"))`

... 从您的应用程序(可能在 onCreate 中)在您的应用程序运行时接收连接状态更改(它也会在应用程序启动时触发)。您可能还需要在 list 中设置 android:export="true"(用于接收来自白名单操作的广播)。

关于android - 连接检查在 Android Oreo Kotlin 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47220118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com