0

アプリに Google 広告を実装しました。問題は、広告に触れてアプリケーションに戻るたびに、丸みを帯びた線が表示されることです。広告が注目を集めるようなものです。

問題の写真

広告コード (アプリに統合している) は次のとおりです。

<?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>

何かご意見は?

4

1 に答える 1

0

広告が webview で html にレンダリングされている可能性はありますか? その場合、そこに表示されている css にアクセスできる場合は、次のように編集します。

a {outline:0}
a:focus { outline:0;}
于 2012-08-29T22:10:58.220 に答える