public interface

CheckoutInterface

com.usebutton.sdk.checkout.CheckoutInterface

Class Overview

Interface containing methods that a publisher can use to customize the experience of the

Summary

Public Methods
abstract RelativeLayout getViewContainer()
The view container can be used to add custom views to the checkout experience with LayoutInflater.from(viewContainer.getContext()).inflate(R.layout.layout_goes_here, viewContainer); The view must be inflated with the view container's context to avoid any memory leaks.
abstract void hideActiveCard()
Animates the active card out of the checkout view.
abstract void setActiveCard(Card card)
Sets the active checkout card.
abstract void setBottomBarColor(int color)
Sets the primary color of the bottom bar in the checkout experience.
abstract void setBottomBarTintColor(int color)
Sets the tint color of the bottom bar in the checkout experience.
abstract void setSubTitle(String subTitle)
Sets the sub title of the checkout experience.
abstract void setSubTitleColor(int color)
Sets the color of the sub title of in the checkout experience.
abstract void setTitle(String title)
Sets the main title of the checkout experience.
abstract void setTitleColor(int color)
Sets the color of the main title of in the checkout experience.
abstract void setTopBarColor(int color)
Sets the primary color of the top bar in the checkout experience.
abstract void setTopBarTintColor(int color)
Sets the tint color of the top bar in the checkout experience.
abstract void showActiveCard()
Animates the active card into the checkout view.

Public Methods

public abstract RelativeLayout getViewContainer ()

The view container can be used to add custom views to the checkout experience with LayoutInflater.from(viewContainer.getContext()).inflate(R.layout.layout_goes_here, viewContainer); The view must be inflated with the view container's context to avoid any memory leaks.

Returns
  • view container in the checkout experience.

public abstract void hideActiveCard ()

Animates the active card out of the checkout view. [BETA]

public abstract void setActiveCard (Card card)

Sets the active checkout card. Call to action text will be displayed in the checkout footer. [BETA]

Parameters
card the card to become active or null to clear the current card.

public abstract void setBottomBarColor (int color)

Sets the primary color of the bottom bar in the checkout experience.

Parameters
color ColorInt Color

public abstract void setBottomBarTintColor (int color)

Sets the tint color of the bottom bar in the checkout experience.

Parameters
color ColorInt Color

public abstract void setSubTitle (String subTitle)

Sets the sub title of the checkout experience.

Parameters
subTitle The title

public abstract void setSubTitleColor (int color)

Sets the color of the sub title of in the checkout experience.

Parameters
color ColorInt Color

public abstract void setTitle (String title)

Sets the main title of the checkout experience.

Parameters
title The title

public abstract void setTitleColor (int color)

Sets the color of the main title of in the checkout experience.

Parameters
color ColorInt Color

public abstract void setTopBarColor (int color)

Sets the primary color of the top bar in the checkout experience.

Parameters
color ColorInt Color

public abstract void setTopBarTintColor (int color)

Sets the tint color of the top bar in the checkout experience.

Parameters
color ColorInt Color

public abstract void showActiveCard ()

Animates the active card into the checkout view. [BETA]