如何以编程方式检查 android 手机上是否允许非市场应用程序?
谢谢
你可以试试这个,它会打开设置屏幕
检查它
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);
使用PackageManager
类来做到这一点,更多信息在这里。