将添加添加到Android应用程序中

时间:2013-09-20 03:04:03

标签: android admob

我想在我的Android应用中放一个小横幅广告。我尝试使用广告暴徒,但我没有得到它。我需要付费才能在我的应用程序中添加添加内容。任何人都可以建议我怎么做。首先,我想做它测试然后发布。我尝试使用developers.google.com的指南,我没有得到它

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

// Create the adView
adView = new AdView(this, AdSize.BANNER, MY_AD_UNIT_ID);

// Lookup your LinearLayout assuming it's been given
// the attribute android:id="@+id/mainLayout"
LinearLayout layout = (LinearLayout)findViewById(R.id.mainLayout);

// Add the adView to it
layout.addView(adView);

// Initiate a generic request to load it with an ad
adView.loadAd(new AdRequest());

}

1 个答案:

答案 0 :(得分:1)

Do i need to pay to put adds in my application

不,你不需要支付任何费用。您应该使用ad-mob帐户来使用广告ID。

确保在manifest.xml中声明了internet权限,并将.jar文件添加到build-path。

<uses-permission android:name="android.permission.INTERNET" />