我試圖在android中檢索安裝的應用程序的列表。我寫了下面的代碼:無法對非靜態方法進行靜態引用getPackageManager()
final Intent myIntent = new Intent(Intent.ACTION_MAIN, null);
myIntent.addCategory(Intent.CATEGORY_LAUNCHER);
final List AppsList = Context.getPackageManager().queryIntentActivities(myIntent, 0);
我收到此錯誤:
Cannot make a static reference to the non-static method getPackageManager() from the type Context
知道,無論Context
和PackageManager
是抽象類,不能糾正錯誤。請幫助。