Searched defs:activityName (Results 1 - 10 of 10) 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/main/java/androidx/appcompat/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/services/tests/servicestests/src/com/android/server/backup/testutils/
H A DPackageManagerStub.java498 public Drawable getActivityIcon(ComponentName activityName) argument
509 public Drawable getActivityBanner(ComponentName activityName) argument
547 public Drawable getActivityLogo(ComponentName activityName) argument
610 public Resources getResourcesForActivity(ComponentName activityName) argument
/frameworks/base/test-mock/src/android/test/mock/
H A DMockPackageManager.java530 public Drawable getActivityIcon(ComponentName activityName) argument
546 public Drawable getActivityBanner(ComponentName activityName) argument
577 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException { argument
642 public Resources getResourcesForActivity(ComponentName activityName) argument
/frameworks/base/tools/aapt/
H A DCommand.cpp1080 String8 activityName; local
1116 String8 aName(getComponentName(pkg, activityName));
1694 activityName = AaptXml::getAttribute(tree, NAME_ATTR, &error);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePackageManager.java494 public Drawable getActivityIcon(ComponentName activityName) throws NameNotFoundException { argument
504 public Drawable getActivityBanner(ComponentName activityName) throws NameNotFoundException { argument
539 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException { argument
600 public Resources getResourcesForActivity(ComponentName activityName) argument
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1226 @Override public Drawable getActivityIcon(ComponentName activityName) argument
1228 return getActivityInfo(activityName, sDefaultFlags).loadIcon(this);
1261 public Drawable getActivityBanner(ComponentName activityName) argument
1263 return getActivityInfo(activityName, sDefaultFlags).loadBanner(this);
1294 public Drawable getActivityLogo(ComponentName activityName) argument
1296 return getActivityInfo(activityName, sDefaultFlags).loadLogo(this);
1407 public Resources getResourcesForActivity(ComponentName activityName) argument
1410 getActivityInfo(activityName, sDefaultFlags).applicationInfo);
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java4396 * @param activityName Name of the activity whose icon is to be retrieved.
4405 public abstract Drawable getActivityIcon(ComponentName activityName) argument
4434 * @param activityName Name of the activity whose banner is to be retrieved.
4441 public abstract Drawable getActivityBanner(ComponentName activityName) argument
4535 * @param activityName Name of the activity whose logo is to be retrieved.
4542 public abstract Drawable getActivityLogo(ComponentName activityName) argument
4741 * @param activityName Name of the activity whose resources are to be
4750 public abstract Resources getResourcesForActivity(ComponentName activityName) argument

Completed in 2136 milliseconds