如何以编程方式检查Android手机上是否允许使用非市场应用程序?
由于
答案 0 :(得分:11)
你可以尝试这个,它打开设置屏幕
检查
import android.provider.Settings;
int result = Settings.Secure.getInt(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS, 0);
打开设置
Intent intentSettings = new Intent();
intentSettings.setAction(android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
startActivity(intentSettings);
答案 1 :(得分:0)
使用PackageManager
类来执行此操作,更多信息为here。