public class

TextCard

extends Card
java.lang.Object
   ↳ com.usebutton.sdk.checkout.Card
     ↳ com.usebutton.sdk.checkout.TextCard

Class Overview

This is a concrete card class that can display a title and body text.

Summary

Nested Classes
class TextCard.Builder  
[Expand]
Inherited Constants
From class com.usebutton.sdk.checkout.Card
Public Methods
int getBackgroundColor()
String getBody()
int getBodyColor()
float getBodySize()
Typeface getBodyTypeface()
String getTitle()
int getTitleColor()
float getTitleSize()
Typeface getTitleTypeface()
Protected Methods
final void onBindView(View view)
Called when an inflated card view should be populated with data for display.
final View onCreateView(ViewGroup parent)
Called when a view should be inflated to display the card contents.
[Expand]
Inherited Methods
From class com.usebutton.sdk.checkout.Card
From class java.lang.Object

Public Methods

public int getBackgroundColor ()

public String getBody ()

public int getBodyColor ()

public float getBodySize ()

public Typeface getBodyTypeface ()

public String getTitle ()

public int getTitleColor ()

public float getTitleSize ()

public Typeface getTitleTypeface ()

Protected Methods

protected final 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 final 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.