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

/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java161 * Retrieve the name of the package that launched calledActivity from a share intent.
169 * @param calledActivity Current activity that was launched to share content
172 public static String getCallingPackage(Activity calledActivity) { argument
173 String result = calledActivity.getCallingPackage();
175 result = calledActivity.getIntent().getStringExtra(EXTRA_CALLING_PACKAGE);
181 * Retrieve the ComponentName of the activity that launched calledActivity from a share intent.
189 * @param calledActivity Current activity that was launched to share content
192 public static ComponentName getCallingActivity(Activity calledActivity) { argument
193 ComponentName result = calledActivity.getCallingActivity();
195 result = calledActivity
[all...]

Completed in 682 milliseconds