请针对 Android 版本 11 强制网络 3G、4G 解决此代码。 我正在使用此代码但显示错误。
try{
Intent intent = new Intent("android.intent.action.MAIN");
intent.setClassName("com.android.settings", "com.android.phone.settings.RadioInfo");
startActivity(intent);
} catch(Exception e){
Toast.makeText(getApplicationContext(), " Device not supported" , Toast.LENGTH_LONG).show();
}
try{
Intent intent = new Intent("android.intent.action.MAIN");
intent.setClassName("com.android.phone", "com.android.phone.settings.RadioInfo");
startActivity(intent);
} catch(Exception e){
Toast.makeText(getApplicationContext(), " Device not supported", Toast.LENGTH_LONG).show();
}