本文整理汇总了Java中com.facebook.internal.PendingCallStore类的典型用法代码示例。如果您正苦于以下问题:Java PendingCallStore类的具体用法?Java PendingCallStore怎么用?Java PendingCallStore使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PendingCallStore类属于com.facebook.internal包,在下文中一共展示了PendingCallStore类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: UiLifecycleHelper
import com.facebook.internal.PendingCallStore; //导入依赖的package包/类
/**
* Creates a new UiLifecycleHelper.
*
* @param activity the Activity associated with the helper. If calling from a Fragment,
* use {@link android.support.v4.app.Fragment#getActivity()}
* @param callback the callback for Session status changes, can be null
*/
public UiLifecycleHelper(Activity activity, Session.StatusCallback callback) {
if (activity == null) {
throw new IllegalArgumentException(ACTIVITY_NULL_MESSAGE);
}
this.activity = activity;
this.callback = callback;
this.receiver = new ActiveSessionBroadcastReceiver();
this.broadcastManager = LocalBroadcastManager.getInstance(activity);
this.pendingFacebookDialogCallStore = PendingCallStore.getInstance();
// initialize SDK
Settings.sdkInitialize(activity);
}