java.lang.Object | |
↳ | com.usebutton.sdk.models.Preview |
The Preview class holds a short preview of an AppAction
, the getText()
method
will represent the text while getIconUri()
holds the URI for an icon for the app
we're linking into.
In your android.view.View.OnClickListener
you can choose to invoke this preview when clicked
or show your own custom UI.
If you choose to render your own UI, please refer to the
Custom Button UI
guide for more information.
Please refer to getAction(String, ButtonContext, Button.ActionListener)
for a more
comprehensive code example on usage of this class.
Example:
AppAction action; Preview preview = action.getPreview(); android.widget.ImageButton button = (ImageButton) findViewById(R.id.activity_my_button); if (preview.getText() != null) { preview.getText().applyTo(button); } button.setBackgroundColor(preview.getBackgroundColor()); button.setBack SomeImageLoader.load(preview.getIconUri(), new OnImage { @Override public void onImage(final Bitmap image) { button.setImageBitmap(image); } }); b.setOnClickListener(new View.OnClickListener() { @Override public void onClick(final View v) { action.invokePreview(v.getContext()); } });
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This is the preview's text, it has a styling hint for the text's color (
getColor() )
and a string copy (getCopy() . | |||||||||||
If this method returns true you should call
AppAction#invokePreview(Context) even
if you have your own custom UI. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
This is the preview's text, it has a styling hint for the text's color (getColor()
)
and a string copy (getCopy()
.
If this method returns true you should call AppAction#invokePreview(Context)
even
if you have your own custom UI.
AppAction action; Context context; if (action.getPreview().hasAction()) { action.invokePreview(context); } else { showMyCustomCard(action.getListBody()); }