public interface IInAppMessageViewWrapper
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes an
IInAppMessage . |
IInAppMessage |
getInAppMessage() |
android.view.View |
getInAppMessageView() |
boolean |
getIsAnimatingClose() |
void |
open(android.app.Activity activity)
Opens an
IInAppMessage on the Activity . |
void open(android.app.Activity activity)
IInAppMessage
on the Activity
. As a
result of this call, it is expected that an IInAppMessage
is visible and interactable by the user.
Note that this method is expected to be called
on the main UI thread and should run synchronously.void close()
IInAppMessage
. As a
result of this call, it is expected that an IInAppMessage
is no longer visible and not interactable by the user.
Note that this method is expected to be called
on the main UI thread and should run synchronously.android.view.View getInAppMessageView()
View
representing the IInAppMessage
that is visible to the user.IInAppMessage getInAppMessage()
IInAppMessage
being wrapped.boolean getIsAnimatingClose()
IInAppMessage
view is
currently in the process of its close animation.