1.先撰寫一個android程式,並上傳到android market
2.加入www.admob.com會員,下載規定的JAR,並放置到指定的路徑並設定,詳細步驟請參考底下
3.將下面的設定放置到eclipse程式碼
此教學參考http://code.google.com/intl/zh-TW/mobile/ads/docs/android/fundamentals.html
AndroidManifest.xml:
main.xml:
*.java:
import com.google.ads.*;
import android.widget.LinearLayout;
AdView adView=new AdView(this,AdSize.BANNER, "你的admob程式 ID");
LinearLayout layout = (LinearLayout)findViewById(R.id.AdLayout);
layout.addView(adView);
adView.loadAd(new AdRequest());
在每個專案上面,右鍵properties-java build path-add external jars
GoogleAdMobAdsSdk-4.1.0放到路徑C:\Program Files\Android\android-sdk\extras\google\admob_ads_sdk 選GoogleAdMobAdsSdk-4.1.0
沒有留言:
張貼留言
注意:只有此網誌的成員可以留言。