/**
* Get the {@link ActivityScopedCache} for the given Activity or <code>null</code> if no {@link
* ActivityScopedCache} exists for the given Activity
*
* @param activity The activity
* @return The {@link ActivityScopedCache} or null
* @see #getOrCreateActivityScopedCache(Activity)
*/
@Nullable @MainThread static ActivityScopedCache getActivityScope(@NonNull Activity activity) {
if (activity == null) {
throw new NullPointerException("Activity is null");
}
String activityId = activityIdMap.get(activity);
if (activityId == null) {
return null;
}
return activityScopedCacheMap.get(activityId);
}
PresenterManager.java 文件源码
java
阅读 43
收藏 0
点赞 0
评论 0
项目:GitHub
作者:
评论列表
文章目录