-1

我想在我的安卓应用中放一个小横幅广告。我尝试使用 ad-mob,但我没有得到它。我需要付费才能在我的应用程序中添加内容吗?任何机构都可以建议我如何放置它。首先我想做它测试它然后发布。我尝试使用 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());

}

4

1 回答 1

1

Do i need to pay to put adds in my application

不,您不需要支付任何费用。您应该有 ad-mob 帐户才能使用 ad-id。

确保您在 manifest.xml 中声明了 Internet 权限并将 .jar 文件添加到构建路径。

<uses-permission android:name="android.permission.INTERNET" />
于 2013-09-20T03:39:23.560 回答