我試圖獲取已安裝應用程序的圖標。使用下面的方法,我發現了錯誤:獲取應用程序時,getContext()方法未定義爲MainActivity類型圖標
The method getContext() is undefined for the type MainActivity
try{
String pkg = "com.app.my";//your package name
Drawable icon = getContext().getPackageManager().getApplicationIcon(pkg);
imageView.setImageDrawable(icon);
}
catch (PackageManager.NameNotFoundException ne) {
}
這將是非常有益的,如果有人能指導我。提前致謝!!
看看http://stackoverflow.com/q/10641144/1892652 – 2015-04-05 17:57:05