2
私はこのレイアウトを持つAdMobは3ピクセルを盗みますか?
<LinearLayout android:id="@+id/mainlayout" android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads">
<ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1">
<TableLayout android:id="@+id/tableLayout1" android:layout_width="fill_parent" adroid:layout_height="wrap_content" android:gravity="center_horizontal" >
...
...
</TableLayout>
</ScrollView>
広告は、私は本当に、なぜそこに3つのピクセル(画像でthiny白チェッカーとして示した)広告の下に把握することはできません従う
LinearLayout mainLayout = (LinearLayout)findViewById(R.id.mainlayout);
AdView adView = new AdView(...);
LinearLayout.LayoutParams llParam = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,nearLayout.LayoutParams.WRAP_CONTENT);
llParam.gravity = Gravity.CENTER_HORIZONTAL ;
mainLayout.addView(adView, llParam);
として追加されます。私はそれについて間違いないと思っていますが、イメージに白と黒のパターンを加えて、私が話している地域を強調しています。オリジナルではすべて黒です。それがあったよう
私のアプリにAdMobを追加している間にこれも気付きました。私は説明を見つけることができませんでした。だから私はただ一緒に暮らしています。私は誰かがこれについての洞察を持っているかどうかを確認することに興味があります。 – bschultz