Android 版本 11 强制 3G、4G 仅网络无线电信息设置

问题描述 投票:0回答:1

请针对 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();
} 
networking apk android-contentresolver android-settings sketchware
1个回答
1
投票
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();
}
© www.soinside.com 2019 - 2024. All rights reserved.