Tal*_*lha 11
你可以尝试这个,它打开设置屏幕
检查一下
import android.provider.Settings;
int result = Settings.Secure.getInt(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS, 0);
Run Code Online (Sandbox Code Playgroud)
打开设置
Intent intentSettings = new Intent();
intentSettings.setAction(android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
startActivity(intentSettings);
Run Code Online (Sandbox Code Playgroud)