Android应用程序Activity中广告横幅的实现

发布于 2024-12-09 13:25:51 字数 79 浏览 0 评论 0原文

我正在为一家包含“赞助商”(横幅形式的广告)的公司构建 Android 应用程序。有人帮助我提供在我的应用程序活动中实施广告的示例代码和程序吗?

I am building an Android App for a company that contains 'sponsors' (ads in form of banners).Does anyone help me with the sample code and procedure for implementing ads in my Apps' activities?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幻想少年梦 2024-12-16 13:25:51

使用此代码

AdView adview = (AdView)findViewById(R.id.add_view);      
AdRequest re = new AdRequest();               
adview.loadAd(re);  

和 xml

<com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/res/com.flash.light"
    android:id="@+id/add_view"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="a14e843bea82be1"/>      

值文件夹 attr.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="com.google.ads.AdView">
  <attr name="adSize">
      <enum name="BANNER" value="1"/>
      <enum name="IAB_MRECT" value="2"/>
      <enum name="IAB_BANNER" value="3"/>
      <enum name="IAB_LEADERBOARD" value="4"/>
  </attr>
  <attr name="adUnitId" format="string"/>

将 jar 文件添加到您的项目中。

use this code

AdView adview = (AdView)findViewById(R.id.add_view);      
AdRequest re = new AdRequest();               
adview.loadAd(re);  

and xml

<com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/res/com.flash.light"
    android:id="@+id/add_view"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="a14e843bea82be1"/>      

values folder attr.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="com.google.ads.AdView">
  <attr name="adSize">
      <enum name="BANNER" value="1"/>
      <enum name="IAB_MRECT" value="2"/>
      <enum name="IAB_BANNER" value="3"/>
      <enum name="IAB_LEADERBOARD" value="4"/>
  </attr>
  <attr name="adUnitId" format="string"/>

add jar file to u r project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文