しばらくの間、これについて壁に頭をぶつけていました。AdMob AdView を ScrollView の上に表示させようとしており、ScrollView が画面の残りの部分を埋めようとしています。これまでのところ、AdView を表示してテスト広告を適切にロードすることしかできませんでしたが、画面の残りの部分は真っ黒です。ScrollViewがどこに行ったのかわかりません。
main.xmlを介してではなくプログラムでロードし、ScrollViewの高さをwrap_contentに変更するなど、さまざまなソリューションを試しましたが、それでも同じ問題があります。また、別のスレッドの提案に従って ScrollView の高さを 0px に設定し、重みを 1 に設定しようとしましたが、それも機能しません。これは簡単な答えだと思いますが、今は困惑しています。
main.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:id="@+id/mainLayout"
>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
ads:adUnitId="[my ad id]"
ads:adSize="BANNER"
/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawSelectorOnTop="false"
android:background="[background drawable]">
[snip all the crap within the scrollview which is irrelevant]
</ScrollView>
</LinearLayout>
次に、メインの .java ファイルの oncreate 呼び出しで:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//programattically create adview
//AdView adView = new AdView(this, AdSize.BANNER, "[my ad id]");
//find main layout and add adview to it
//LinearLayout layout = (LinearLayout)findViewById(R.id.mainLayout);
//layout.addView(adView);
//xml adview
AdView adView = (AdView)this.findViewById(R.id.adView);
//set up ad request with test devices/emulator
AdRequest request = new AdRequest();
request.addTestDevice(AdRequest.TEST_EMULATOR);
adView.loadAd(request);
誰にも提案はありますか?