天天看點

Android-跳轉開啟個人熱點頁面Android-打開個人熱點頁面

Android-打開個人熱點頁面

在物聯網開發中,與硬體互動時經常需要通過WIFI來與硬體交換,有時候使用者沒有開啟熱點,需要在APP跳轉到個人熱點的頁面,以下是跳轉方式

Intent intent = new Intent();
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setAction("android.intent.action.MAIN");
ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.Settings$TetherSettingsActivity");
intent.setComponent(cn);
startActivity(intent);