public abstract class

Card

extends Object
java.lang.Object
   ↳ com.usebutton.sdk.checkout.Card
Known Direct Subclasses

Class Overview

Base template class for checkout extension overlay cards.

Summary

Constants
float DEFAULT_TEXT_SIZE_BODY
float DEFAULT_TEXT_SIZE_TITLE
Public Constructors
Card(CallToAction callToAction)
Creates a new card instance with the given call to action.
Public Methods
final void bindView(View view)
Invoked by the checkout system when a view should be populated with the card data.
final View createView(ViewGroup parent)
Invoked by the checkout system when a new view is needed to display card contents.
CallToAction getCallToAction()
Get the public call to action for the active state.
Protected Methods
abstract void onBindView(View view)
Called when an inflated card view should be populated with data for display.
abstract View onCreateView(ViewGroup parent)
Called when a view should be inflated to display the card contents.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final float DEFAULT_TEXT_SIZE_BODY

Constant Value: 13.0

public static final float DEFAULT_TEXT_SIZE_TITLE

Constant Value: 16.0

Public Constructors

public Card (CallToAction callToAction)

Creates a new card instance with the given call to action.

Parameters
callToAction call to action that will be displayed when the card is "active".

Public Methods

public final void bindView (View view)

Invoked by the checkout system when a view should be populated with the card data. Delegates to onBindView(View) and performs other internal initialization.

Parameters
view a view instance inflated by onCreateView(ViewGroup) to display the card contents.

public final View createView (ViewGroup parent)

Invoked by the checkout system when a new view is needed to display card contents. Delegates to onCreateView(ViewGroup) and performs other internal initialization.

Parameters
parent ViewGroup where newly inflated view should be attached.
Returns
  • the view inflated by .

public CallToAction getCallToAction ()

Get the public call to action for the active state.

Returns
  • the call to action for this card.

Protected Methods

protected abstract void onBindView (View view)

Called when an inflated card view should be populated with data for display.

Parameters
view a view instance inflated by onCreateView(ViewGroup) to display the card contents.

protected abstract View onCreateView (ViewGroup parent)

Called when a view should be inflated to display the card contents. Subclasses should override this method

Parameters
parent ViewGroup where newly inflated view should be attached.
Returns
  • the newly inflated view that can display the card contents.