Android 中的網路監聽器
問題陳述:
問題陳述:在Android 中捕獲網路中連接變化可以是一個挑戰。開發人員在尋找合適的 API 或範例來實現此功能時可能會遇到困難。
解決方案:為了解決此問題,以下綜合解決方案提供了逐步說明在Android 中建立網路監聽器:
Java 類別:<code class="java">public class ConnectionChangeReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo(); NetworkInfo mobNetInfo = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); if (activeNetInfo != null) { Toast.makeText(context, "Active Network Type : " + activeNetInfo.getTypeName(), Toast.LENGTH_SHORT).show(); } if (mobNetInfo != null) { Toast.makeText(context, "Mobile Network Type : " + mobNetInfo.getTypeName(), Toast.LENGTH_SHORT).show(); } } }</code>
Manifest XML:
<code class="xml"><uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/></code>
<code class="xml"><receiver android:name="com.blackboard.androidtest.receiver.ConnectionChangeReceiver" android:label="NetworkConnection"> <intent-filter> <action android:name="android.net.conn.CONNECTIVITY_CHANGE"/> </intent-filter> </receiver></code>
以上是如何在 Android 中實現網頁偵聽器:逐步指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!