AdView
有此級別的更新版本。前往查看 最新版本。

AdView displays advertisements by Facebook.

AdView can be declared and added to view:

AdView adView = new AdView(context, PLACEMENT_ID, AdSize.BANNER_HEIGHT_50); addView(adView); adView.loadAd();

AdView requires android.permission.INTERNET permission to make network requests. If android.permission.ACCESS_NETWORK_STATE permission is granted, AdView will only make network requests when network is connected.

伸延:RelativeLayout
實作Ad
套件:ads
建構函式
AdView(Context, String, AdSize)

Constructs an AdView using the given context, placement_id and size.

public AdView(Context context, String placementId, AdSize adSize)
參數說明
contextAndroid context
placementIdId of ad placement
adSizeSize of the ad control
執行個體方法
setAdListener(AdListener)

Sets an AdListener to be notified on events in control lifecycle.

public void setAdListener(AdListener adListener)
參數說明
adListenerThe listener
setImpressionListener(ImpressionListener)
public void setImpressionListener(ImpressionListener impListener)
參數說明
impListenerThe listener
loadAd()

Loads an ad.

This method always returns immediately. The ad is loaded asynchronously. The control's ad listener will be called when loading finishes or fails.

public void loadAd()
loadAd()

Loads an ad.

If the AdView is configured to refresh, this will start the refreshing. There is no need to call this method multiple times.

If the AdView is not configured to refresh automatically, it can be refreshed by calling this method again. Each subsequent call should be at least 30 seconds apart.

This method always returns immediately. The ad is loaded asynchronously. If available, the ad listener will be called when loading finishes or fails.

public void loadAd()
destroy()

Destroys the ad control.

This method should be called when the hosting activity of the ad control is destroyed.

public void destroy()
destroy()
public void destroy()
disableAutoRefresh()

Disables auto refresh.

If the AdView is used in a mediation environment, this should be called because the mediation provider will control the refresh.

public void disableAutoRefresh()