AccessTokenTracker
يتوفر إصدار أحدث لهذه الفئة. يرجى التحقق أحدث إصدار.

This class can be extended to receive notifications of access token changes. The AccessTokenTracker.stopTracking() method should be called in the onDestroy() method of the receiving Activity or Fragment.

الإضافات:Object
الحزمة:facebook
أدوات الإنشاء
AccessTokenTracker()

The constructor.

public AccessTokenTracker()
طرق المثيلات
onCurrentAccessTokenChanged(AccessToken, AccessToken)

The method that will be called with the access token changes.

protected abstract void onCurrentAccessTokenChanged(AccessToken oldAccessToken, AccessToken currentAccessToken)
المعلمةالوصف
oldAccessTokenThe access token before the change.
currentAccessTokenThe new access token.
startTracking()

Starts tracking the current access token

public void startTracking()
stopTracking()

Stops tracking the current access token.

public void stopTracking()
isTracking()

Gets whether the tracker is tracking the current access token.

public boolean isTracking()
Returns
True if the tracker is tracking the current access token, false if not