Searched defs:activityName (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/users/
H A DAppRestrictionsHelper.java193 info.activityName = info.appName;
234 info.activityName = info.appName;
249 String both = info.packageName + "+" + info.activityName;
251 && !TextUtils.isEmpty(info.activityName)
326 info.activityName = app.activityInfo.loadLabel(pm);
327 if (info.activityName == null) info.activityName = info.appName;
365 public CharSequence activityName; field in class:AppRestrictionsHelper.SelectableAppInfo
371 return packageName + ": appName=" + appName + "; activityName=" + activityName
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DIntents.java98 Context context, String activityName) {
99 return new PhotoViewIntentBuilder(context, activityName);
150 private PhotoViewIntentBuilder(Context context, String activityName) { argument
152 mIntent.setClassName(context, activityName);
97 newPhotoViewIntentBuilder( Context context, String activityName) argument
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java803 * @param activityName The activity component name flattened to string.
807 public HistoricalRecord(String activityName, long time, float weight) { argument
808 this(ComponentName.unflattenFromString(activityName), time, weight);
814 * @param activityName The activity name.
818 public HistoricalRecord(ComponentName activityName, long time, float weight) { argument
819 this.activity = activityName;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActivityChooserModel.java778 * @param activityName The activity component name flattened to string.
782 public HistoricalRecord(String activityName, long time, float weight) { argument
783 this(ComponentName.unflattenFromString(activityName), time, weight);
789 * @param activityName The activity name.
793 public HistoricalRecord(ComponentName activityName, long time, float weight) { argument
794 this.activity = activityName;
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java510 public Drawable getActivityIcon(ComponentName activityName) argument
526 public Drawable getActivityBanner(ComponentName activityName) argument
557 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException { argument
622 public Resources getResourcesForActivity(ComponentName activityName) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePackageManager.java480 public Drawable getActivityIcon(ComponentName activityName) throws NameNotFoundException { argument
490 public Drawable getActivityBanner(ComponentName activityName) throws NameNotFoundException { argument
525 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException { argument
586 public Resources getResourcesForActivity(ComponentName activityName) argument
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1169 @Override public Drawable getActivityIcon(ComponentName activityName) argument
1171 return getActivityInfo(activityName, sDefaultFlags).loadIcon(this);
1204 public Drawable getActivityBanner(ComponentName activityName) argument
1206 return getActivityInfo(activityName, sDefaultFlags).loadBanner(this);
1237 public Drawable getActivityLogo(ComponentName activityName) argument
1239 return getActivityInfo(activityName, sDefaultFlags).loadLogo(this);
1351 public Resources getResourcesForActivity(ComponentName activityName) argument
1354 getActivityInfo(activityName, sDefaultFlags).applicationInfo);
/frameworks/base/tools/aapt/
H A DCommand.cpp1095 String8 activityName; local
1131 String8 aName(getComponentName(pkg, activityName));
1681 activityName = AaptXml::getAttribute(tree, NAME_ATTR, &error);
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java4187 * @param activityName Name of the activity whose icon is to be retrieved.
4196 public abstract Drawable getActivityIcon(ComponentName activityName) argument
4225 * @param activityName Name of the activity whose banner is to be retrieved.
4232 public abstract Drawable getActivityBanner(ComponentName activityName) argument
4326 * @param activityName Name of the activity whose logo is to be retrieved.
4333 public abstract Drawable getActivityLogo(ComponentName activityName) argument
4532 * @param activityName Name of the activity whose resources are to be
4541 public abstract Resources getResourcesForActivity(ComponentName activityName) argument

Completed in 7611 milliseconds