Java Code Examples for com.facebook.internal.AnalyticsEvents#EVENT_LOGIN_BUTTON_DID_TAP

The following examples show how to use com.facebook.internal.AnalyticsEvents#EVENT_LOGIN_BUTTON_DID_TAP . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LoginButton.java    From kognitivo with Apache License 2.0 5 votes vote down vote up
/**
 * Create the LoginButton by inflating from XML
 *
 * @see View#View(Context, AttributeSet)
 */
public LoginButton(Context context) {
    super(
            context,
            null,
            0,
            0,
            AnalyticsEvents.EVENT_LOGIN_BUTTON_CREATE,
            AnalyticsEvents.EVENT_LOGIN_BUTTON_DID_TAP);
}
 
Example 2
Source File: LoginButton.java    From kognitivo with Apache License 2.0 5 votes vote down vote up
/**
 * Create the LoginButton by inflating from XML
 *
 * @see View#View(Context, AttributeSet)
 */
public LoginButton(Context context, AttributeSet attrs) {
    super(
            context,
            attrs,
            0,
            0,
            AnalyticsEvents.EVENT_LOGIN_BUTTON_CREATE,
            AnalyticsEvents.EVENT_LOGIN_BUTTON_DID_TAP);
}
 
Example 3
Source File: LoginButton.java    From kognitivo with Apache License 2.0 5 votes vote down vote up
/**
 * Create the LoginButton by inflating from XML and applying a style.
 *
 * @see View#View(Context, AttributeSet, int)
 */
public LoginButton(Context context, AttributeSet attrs, int defStyle) {
    super(
            context,
            attrs,
            defStyle,
            0,
            AnalyticsEvents.EVENT_LOGIN_BUTTON_CREATE,
            AnalyticsEvents.EVENT_LOGIN_BUTTON_DID_TAP);
}