當我啓動系統意圖時,Android設備打開錯誤的設置頁面。我試圖用下面的代碼打開數據漫遊設置頁面,但設備打開了數據漫遊選項不存在的設置頁面。當我啓動系統意圖時,設備打開錯誤的設置頁面
if (bv < Build.VERSION_CODES.JELLY_BEAN) {
Intent intent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);
ComponentName cName = new ComponentName("com.android.phone", "com.android.phone.Settings");
intent.setComponent(cName);
startActivity(intent);
} else {
Intent intent = new Intent();
intent.setAction(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS);
startActivity(intent);
}
Intent intent = new Intent(Intent.ACTION_MAIN); intent.setClassName(「com.android.phone」,「com.android.phone.NetworkSetting」); startActivity(intent); – Meenal
使用此意圖只需將設置更改爲網絡設置 – Meenal