- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 3 个线性布局,第一个布局用于 ImageView ,第二个布局用于两个按钮,即我为 admob
添加的下一个、上一个和第三个,但问题是我的 admob(Advertisement)
为广告占用额外的空间,但我想显示图像的顶部或底部位置,如何设置它的 XML?
我的 XML:
< ?xml version="1.0" encoding="utf-8"? >
< LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:gravity="fill"
android:orientation="vertical"
android:weightSum="100">
<ImageView
android:id="@+id/idImageViewPic"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="100"
android:adjustViewBounds="true"
android:background="#000000"
android:maxHeight="91dip"
android:maxWidth="47dip"
android:padding="10dip"
android:src="@drawable/p1"
/>
<LinearLayout
android:id="@+id/layout"
android:layout_width="wrap_content"
android:layout_height="50dp"
>
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="aasdf74546adsf"
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
>
</com.google.ads.AdView>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
>
<Button
android:id="@+id/bGeri"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#d6d6d6"
android:text="Previous"
android:textStyle="bold" >
</Button>
<Button
android:id="@+id/bIleri"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#d6d6d6"
android:text="Next"
android:textStyle="bold" >
</Button>
</LinearLayout>
</LinearLayout>
最佳答案
看看这个,它可能对你有帮助。
创建 xml 文件,例如。
主.xml
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/idImageViewPic"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/p1" />
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
ads:adSize="BANNER"
ads:adUnitId="a152fe7ceceb49a"
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" >
</com.google.ads.AdView>
</RelativeLayout>
现在像这样在 activity_main.xml 中包含这个 main.xml 文件。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="10" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="9"
android:orientation="vertical" >
<include
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/main" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal" >
<Button
android:id="@+id/bGeri"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#d6d6d6"
android:text="Previous"
android:textStyle="bold" >
</Button>
<Button
android:id="@+id/bIleri"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#d6d6d6"
android:text="Next"
android:textStyle="bold" >
</Button>
</LinearLayout>
希望这能解决你的问题
关于android - 如何在 Imageview 的顶部或底部添加 ad-mob(广告横幅)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21858960/
嗨,我最近开始进入 pygame 库并制作一些小项目。我正在制作一个非常简单的游戏,您作为玩家必须躲避敌人。但是,当它们相互碰撞时,我想删除它们。我想到了下面的代码,但是,它只删除了一个小怪。生物在
假设我使用 partykit:mob() 拟合模型.之后,我想生成一个包含所有节点的并排表(包括使用整个样本拟合的模型)。在这里,我尝试使用 stargazer() 来做到这一点。 ,但其他方式也非常
我尝试了很多方法让我的子弹与我的生物碰撞,但它不起作用。子弹直接穿过暴民。我也尝试过 spritecollide 和 groupcollide 代码,但都失败了。也许我把代码放在了错误的行或错误的位置
本文整理了Java中com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Yog类的一些代码示例,展示了Yog类的具体用法。这些代码示例主要来源于G
我已将Ad Mobile广告放入应用程序中。我有一个Admob帐户。我是否已将我的应用程序放入Google Play以收钱? 最佳答案 您是在询问是否通过放置Ad Mob将您的应用程序自动放置在Goo
我正在尝试制作一个在屏幕上多次生成的 Sprite 。该 Sprite 将用于碰撞。该 Sprite 之前有一个随机范围问题,我相信该问题已得到解决。但 Sprite 组仍然存在问题。 属性错误:“M
我们在使用 andengine 编码的基于关卡的游戏中使用 admob 插页式广告。首次加载游戏时广告正常显示。但是,我们希望在每个关卡后展示广告。当第二次调用广告时,即在场景上方,它会给出错误。我们
在我的手机上安装新应用程序后,我试图运行它,但我却读到了这个- The Application MyApp has stopped unexpectedly.Plz try again. 谷歌搜索了一
我有 3 个线性布局,第一个布局用于 ImageView ,第二个布局用于两个按钮,即我为 admob 添加的下一个、上一个和第三个,但问题是我的 admob(Advertisement) 为广告占用
我有两个 div,它们一个接一个地放置。在手机上,两个 div 垂直堆叠。这很好。但我正在尝试在移动设备上重新排序。当屏幕尺寸变小时,我希望第二个 div 保持在第一个之上。我尝试了几种方法——fle
我正在使用此代码将浏览器 mob 代理与 maven 依赖项集成net.lightbody.bmp browsermob 核心 2.1.5 它根本没有捕获网络请求,我得到的是这种 har 文件: {
现在我一直在尝试将 adwhirl 集成到我的应用程序中,它不显示来自 admob 提供商的任何添加。但它会显示自家广告,这似乎没有任何问题 我添加了日志猫文件 为了验证 admob 的工作,我也与同
我正在尝试在 Flutter 应用中实现来自 AdMob 的广告。我在两天前创建了 Admob Id,我的帐户已通过 AdMob 批准。我通过测试 App ID 测试了应用程序(横幅广告)及其工作,但
本文整理了Java中com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Yog.yell()方法的一些代码示例,展示了Yog.yell()的具体用
本文整理了Java中com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Yog.notice()方法的一些代码示例,展示了Yog.notice()
本文整理了Java中com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Yog.()方法的一些代码示例,展示了Yog.()的具体用法。这些代码示例
我无法让 partykit 包的 mob 函数进行单变量 MLE 拟合。 # Trying to convert vignette example here https://cran.r-projec
我最近开始使用 google web designer尝试创建一些插页式广告。当我以“admob 格式”发布广告时,我在本地主机上获得了一些 zip 文件。我该如何处理它才能将其作为新广告“插入”到
我无法让 partykit 包的 mob 函数进行单变量 MLE 拟合。 # Trying to convert vignette example here https://cran.r-projec
如果我要从现有的 android mob 应用程序为 android 平板电脑制作应用程序,我必须做哪些类型的更改? 最佳答案 我得到了 this one来自三星,它谈到了为他们的 Galaxy Ta
我是一名优秀的程序员,十分优秀!