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()