gpt4 book ai didi

java - 使应用程序需要互联网连接才能播放

转载 作者:行者123 更新时间:2023-12-01 10:33:37 25 4
gpt4 key购买 nike

我只是想问如何让应用程序需要互联网连接才能启动,并且如果用户智能手机没有连接,那么该应用程序将显示一些关注,例如《部落冲突》游戏或其他在线游戏

enter image description here

如果连接丢失或关闭,应用程序将显示一些类似的注意

任何人都可以解释或提供一些关于如何制作这样的引用吗?

最佳答案

使用BroadcastReceiver您可以将其存档。

public class InternetChangeReceiver extends BroadcastReceiver {

@Override
public void onReceive(final Context context, final Intent intent) {
final ConnectivityManager connMgr = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);

final android.net.NetworkInfo wifi = connMgr
.getNetworkInfo(ConnectivityManager.TYPE_WIFI);

final android.net.NetworkInfo mobile = connMgr
.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);

if (wifi.isAvailable() || mobile.isAvailable()) {
// Open your alert dialog here.


}
}
}

在 list 文件中注册您的BroadcastReceiver

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.checkinternet"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name=".InternetChangeReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
</application>

</manifest>

关于java - 使应用程序需要互联网连接才能播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34943541/

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