「Android Interstitial Ads」修訂間的差異
跳至導覽
跳至搜尋
imported>Wikiuser (新頁面: :*宣告Interstitial廣告版位,<br/>請以下述方式進行Interstitial Ad版位的宣告<br/><b>注意:目前Interstitial廣告有相同版位ID在同一台裝置上,每天只...) |
imported>Wikiuser |
||
行 1: | 行 1: | ||
:*宣告Interstitial廣告版位,<br/>請以下述方式進行Interstitial Ad版位的宣告<br/><b> | :*宣告Interstitial廣告版位,<br/>請以下述方式進行Interstitial Ad版位的宣告<br/><b>注意:目前Interstitial廣告有相同版位ID在同一台裝置上,預設為毎120分鐘展示一次,如需調整請洽服務窗口</b> | ||
twmAdViewInterstitial = new TWMAdViewInterstitial(this); | twmAdViewInterstitial = new TWMAdViewInterstitial(this); | ||
twmAdViewInterstitial.setTWMAdViewListener(new TWMAdViewListener() { | twmAdViewInterstitial.setTWMAdViewListener(new TWMAdViewListener() { |
於 2014年4月21日 (一) 10:00 的最新修訂
- 宣告Interstitial廣告版位,
請以下述方式進行Interstitial Ad版位的宣告
注意:目前Interstitial廣告有相同版位ID在同一台裝置上,預設為毎120分鐘展示一次,如需調整請洽服務窗口
- 宣告Interstitial廣告版位,
twmAdViewInterstitial = new TWMAdViewInterstitial(this); twmAdViewInterstitial.setTWMAdViewListener(new TWMAdViewListener() { @Override public void onReceiveAd(View view) { //call twmAdViewInterstitial show twmAdViewInterstitial.show(); } @Override public void onFailedToReceiveAd(View view) { //onFailedToReceiveAd } });
- 啟動Interstitial廣告服務
void com.taiwanmobile.pt.adp.view.TWMAdViewInterstitial.activeAd(String slotId, String vendorId, boolean testmark) Parameters: slotId 廣告版位Id vendorId 開發者Id testmark 是否測試標籤 , false:表正式服務,true:表進行測試中
- 輸入相關參數啟動廣告服務
twmAdViewInterstitial.activeAd("<Your Slot ID>", "<Your name>", true);