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

/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java162 * Retrieve the name of the package that launched calledActivity from a share intent.
170 * @param calledActivity Current activity that was launched to share content
173 public static String getCallingPackage(Activity calledActivity) { argument
174 String result = calledActivity.getCallingPackage();
176 result = calledActivity.getIntent().getStringExtra(EXTRA_CALLING_PACKAGE);
182 * Retrieve the ComponentName of the activity that launched calledActivity from a share intent.
190 * @param calledActivity Current activity that was launched to share content
193 public static ComponentName getCallingActivity(Activity calledActivity) { argument
194 ComponentName result = calledActivity.getCallingActivity();
196 result = calledActivity
[all...]

Completed in 564 milliseconds