android检查是否允许以编程方式使用非市场应用程序

时间:2012-12-08 14:29:48

标签: android google-play

如何以编程方式检查Android手机上是否允许使用非市场应用程序?

由于

2 个答案:

答案 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