firebase:: admob:: NativeExpressAdView
#include <native_express_ad_view.h>
Loads and displays ads from AdMob Native Ads Express.
Summary
Each NativeExpressAdView object corresponds to a single AdMob Native Express ad placement. There are methods to load an ad, move it, show it and hide it, and retrieve the bounds of the ad onscreen.
NativeExpressAdView objects maintain a presentation state that indicates whether or not they're currently onscreen, as well as a set of bounds (stored in a BoundingBox struct), but otherwise provide information about their current state through Futures. Methods like Initialize, LoadAd, and Hide each have a corresponding Future from which the result of the last call can be determined. The two variants of MoveTo share a single result Future, since they're essentially the same action.
In addition, applications can create their own subclasses of NativeExpressAdView::Listener, pass an instance to the SetListener method, and receive callbacks whenever the presentation state or bounding box of the ad changes.
For example, you could initialize, load, and show a native express ad view while checking the result of the previous action at each step as follows:
namespace admob = ::firebase::admob; admob::NativeExpressAdView* ad_view = new admob::NativeExpressAdView(); ad_view->Initialize(ad_parent, "YOUR_AD_UNIT_ID", desired_ad_size)
Then, later:
if (ad_view->InitializeLastResult().Status() ==
::firebase::kFutureStatusComplete &&
ad_view->InitializeLastResult().Error() ==
firebase::admob::kAdMobErrorNone) {
ad_view->LoadAd(your_ad_request);
}
Constructors and Destructors |
|
|---|---|
NativeExpressAdView()
Creates an uninitialized NativeExpressAdView object.
|
|
~NativeExpressAdView()
|
Public types |
|
|---|---|
Position{
|
enum The possible screen positions for a NativeExpressAdView. |
PresentationState{
|
enum The presentation state of a NativeExpressAdView. |
Public functions |
|
|---|---|
Destroy()
|
Future< void >
Cleans up and deallocates any resources used by the NativeExpressAdView.
|
DestroyLastResult() const
|
Future< void >
|
GetBoundingBox() const
|
Retrieves the NativeExpressAdView's current onscreen size and location.
|
GetPresentationState() const
|
Returns the current presentation state of the NativeExpressAdView.
|
Hide()
|
Future< void >
Hides the NativeExpressAdView.
|
HideLastResult() const
|
Future< void >
|
Initialize(AdParent parent, const char *ad_unit_id, AdSize size)
|
Future< void >
Initializes the NativeExpressAdView object.
|
InitializeLastResult() const
|
Future< void >
Returns a Future that has the status of the last call to Initialize.
|
LoadAd(const AdRequest & request)
|
Future< void >
Begins an asynchronous request for an ad.
|
LoadAdLastResult() const
|
Future< void >
|
MoveTo(int x, int y)
|
Future< void >
Moves the NativeExpressAdView so that its top-left corner is located at (x, y).
|
MoveTo(Position position)
|
Future< void >
Moves the NativeExpressAdView so that it's located at the given pre-defined position.
|
MoveToLastResult() const
|
Future< void >
|
Pause()
|
Future< void >
Pauses the NativeExpressAdView.
|
PauseLastResult() const
|
Future< void >
|
Resume()
|
Future< void >
Resumes the NativeExpressAdView after pausing.
|
ResumeLastResult() const
|
Future< void >
|
SetListener(Listener *listener)
|
void
Sets the Listener for this object.
|
Show()
|
Future< void >
Shows the NativeExpressAdView.
|
ShowLastResult() const
|
Future< void >
|
Classes |
|
|---|---|
|
firebase:: |
A listener class that developers can extend and pass to a NativeExpressAdView object's SetListener method to be notified of changes to the presentation state and bounding box. |
Public types
Position
Position
The possible screen positions for a NativeExpressAdView.
PresentationState
PresentationState
The presentation state of a NativeExpressAdView.
| Properties | |
|---|---|
kPresentationStateCoveringUI
|
NativeExpressAdView is completely covering the screen or has caused focus to leave the application (for example, when opening an external browser during a clickthrough). |
kPresentationStateHidden
|
NativeExpressAdView is currently hidden. |
kPresentationStateOpenedPartialOverlay
|
NativeExpressAdView is visible and has opened a partial overlay on the screen. |
kPresentationStateVisibleWithAd
|
NativeExpressAdView is visible and contains an ad. |
kPresentationStateVisibleWithoutAd
|
NativeExpressAdView is visible, but does not contain an ad. |
Public functions
Destroy
Future< void > Destroy()
Cleans up and deallocates any resources used by the NativeExpressAdView.
DestroyLastResult
Future< void > DestroyLastResult() const
GetBoundingBox
BoundingBox GetBoundingBox() const
Retrieves the NativeExpressAdView's current onscreen size and location.
| Details | |
|---|---|
| Returns |
The current size and location. Values are in pixels, and location coordinates originate from the top-left corner of the screen.
|
GetPresentationState
PresentationState GetPresentationState() const
Returns the current presentation state of the NativeExpressAdView.
| Details | |
|---|---|
| Returns |
The current presentation state.
|
HideLastResult
Future< void > HideLastResult() const
Initialize
Future< void > Initialize( AdParent parent, const char *ad_unit_id, AdSize size )
Initializes the NativeExpressAdView object.
| Details | |||||||
|---|---|---|---|---|---|---|---|
| Parameters |
|
InitializeLastResult
Future< void > InitializeLastResult() const
Returns a Future that has the status of the last call to Initialize.
LoadAd
Future< void > LoadAd( const AdRequest & request )
Begins an asynchronous request for an ad.
If successful, the ad will automatically be displayed in the NativeExpressAdView.
| Details | |||
|---|---|---|---|
| Parameters |
|
LoadAdLastResult
Future< void > LoadAdLastResult() const
MoveTo
Future< void > MoveTo( int x, int y )
Moves the NativeExpressAdView so that its top-left corner is located at (x, y).
Coordinates are in pixels from the top-left corner of the screen.
When built for Android, the library will not display an ad on top of or beneath an Activity's status bar. If a call to MoveTo would result in an overlap, the NativeExpressAdView is placed just below the status bar, so no overlap occurs.
| Details | |||||
|---|---|---|---|---|---|
| Parameters |
|
MoveTo
Future< void > MoveTo( Position position )
Moves the NativeExpressAdView so that it's located at the given pre-defined position.
| Details | |||
|---|---|---|---|
| Parameters |
|
MoveToLastResult
Future< void > MoveToLastResult() const
NativeExpressAdView
NativeExpressAdView()
Creates an uninitialized NativeExpressAdView object.
Initialize must be called before the object is used.
Pause
Future< void > Pause()
Pauses the NativeExpressAdView.
Should be called whenever the C++ engine pauses or the application loses focus.
PauseLastResult
Future< void > PauseLastResult() const
ResumeLastResult
Future< void > ResumeLastResult() const
SetListener
void SetListener( Listener *listener )
Sets the Listener for this object.
| Details | |||
|---|---|---|---|
| Parameters |
|
ShowLastResult
Future< void > ShowLastResult() const
~NativeExpressAdView
~NativeExpressAdView()

