我已在我的应用中实施了Google广告。问题是:每次触摸广告并返回应用程序时,都会出现一条圆弧线。就像广告获得关注一样。
问题的picture。
广告代码(我在应用中合并)如下:
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads">
<com.google.ads.AdView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
ads:adUnitId="a150203b883dd6d"
ads:adSize="BANNER"
android:focusable="false"
android:focusableInTouchMode="false"
ads:testDevices="TEST_EMULATOR, 39e0b3669eb01337"
ads:loadAdOnCreate="true"/>
</merge>
有什么想法吗?
答案 0 :(得分:0)
可能是广告在网页浏览中呈现为html吗?如果是这样,你可以访问那里的css,就像这样编辑:
a {outline:0}
a:focus { outline:0;}