2012-12-08 86 views

回答

10

你可以試試這個,它會打開設置屏幕

檢查它

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); 
+0

謝謝,但我想只有打開此屏幕,如果這款手機不允許非市場應用。因此,我需要先檢查是否允許非市場應用程序。 – sbo

+0

工作。謝謝:) – sbo

+1

在Android 4.0上,正確的操作是「android.provider.Settings.ACTION_SECURITY_SETTINGS」 – sbo

0

使用PackageManager類要做到這一點,更多的信息here

相關問題