本文整理汇总了Java中android.content.pm.PackageManager.getDrawable方法的典型用法代码示例。如果您正苦于以下问题:Java PackageManager.getDrawable方法的具体用法?Java PackageManager.getDrawable怎么用?Java PackageManager.getDrawable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.content.pm.PackageManager
的用法示例。
在下文中一共展示了PackageManager.getDrawable方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getActivityIcon
import android.content.pm.PackageManager; //导入方法依赖的package包/类
/**
* Gets the activity or application icon for an activity.
*
* @param component Name of an activity.
* @return A drawable, or {@code null} if neither the acitivy or the application
* have an icon set.
*/
private Drawable getActivityIcon(ComponentName component) {
PackageManager pm = mContext.getPackageManager();
final ActivityInfo activityInfo;
try {
activityInfo = pm.getActivityInfo(component, PackageManager.GET_META_DATA);
} catch (NameNotFoundException ex) {
Log.w(LOG_TAG, ex.toString());
return null;
}
int iconId = activityInfo.getIconResource();
if (iconId == 0) return null;
String pkg = component.getPackageName();
Drawable drawable = pm.getDrawable(pkg, iconId, activityInfo.applicationInfo);
if (drawable == null) {
Log.w(LOG_TAG, "Invalid icon resource " + iconId + " for "
+ component.flattenToShortString());
return null;
}
return drawable;
}
示例2: getActivityIcon
import android.content.pm.PackageManager; //导入方法依赖的package包/类
private Drawable getActivityIcon(ComponentName component) {
PackageManager pm = this.mContext.getPackageManager();
try {
ActivityInfo activityInfo = pm.getActivityInfo(component, 128);
int iconId = activityInfo.getIconResource();
if (iconId == 0) {
return null;
}
Drawable drawable = pm.getDrawable(component.getPackageName(), iconId, activityInfo.applicationInfo);
if (drawable != null) {
return drawable;
}
Log.w(LOG_TAG, "Invalid icon resource " + iconId + " for " + component.flattenToShortString());
return null;
} catch (NameNotFoundException ex) {
Log.w(LOG_TAG, ex.toString());
return null;
}
}
示例3: loadPackageIcon
import android.content.pm.PackageManager; //导入方法依赖的package包/类
public static Drawable loadPackageIcon(Context context, String authority, int icon) {
if (icon != 0) {
if (authority != null) {
final PackageManager pm = context.getPackageManager();
final ProviderInfo info = pm.resolveContentProvider(authority, 0);
if (info != null) {
return pm.getDrawable(info.packageName, icon, info.applicationInfo);
}
} else {
return ContextCompat.getDrawable(context, icon);
}
}
return null;
}
示例4: AccountData
import android.content.pm.PackageManager; //导入方法依赖的package包/类
/**
* @param name The name of the account. This is usually the user's email address or
* username.
* @param description The description for this account. This will be dictated by the
* type of account returned, and can be obtained from the system AccountManager.
*/
public AccountData(String name, AuthenticatorDescription description) {
mName = name;
if (description != null) {
mType = description.type;
// The type string is stored in a resource, so we need to convert it into something
// human readable.
String packageName = description.packageName;
PackageManager pm = getPackageManager();
if (description.labelId != 0) {
mTypeLabel = pm.getText(packageName, description.labelId, null);
if (mTypeLabel == null) {
throw new IllegalArgumentException("LabelID provided, but label not found");
}
} else {
mTypeLabel = "";
}
if (description.iconId != 0) {
mIcon = pm.getDrawable(packageName, description.iconId, null);
if (mIcon == null) {
throw new IllegalArgumentException("IconID provided, but drawable not " +
"found");
}
} else {
mIcon = getResources().getDrawable(android.R.drawable.sym_def_app_icon);
}
}
}
示例5: loadIcon
import android.content.pm.PackageManager; //导入方法依赖的package包/类
/**
* Load icon
*
* @param packageManager package manager
* @param packageName package name
* @param iconId icon id
* @return drawable
*/
static public Drawable loadIcon(@NonNull final PackageManager packageManager, final String packageName, final int iconId)
{
if (iconId != 0)
{
return packageManager.getDrawable(packageName, iconId, null);
}
return packageManager.getDefaultActivityIcon();
}