gpt4 book ai didi

android - AdMob AdView 出现了,但我的布局的其余部分不见了 (Android)

转载 作者:行者123 更新时间:2023-11-30 04:38:30 25 4
gpt4 key购买 nike

有一段时间我一直在为这个问题苦思冥想。试图让 AdMob AdView 显示在 ScrollView 上方,并说 ScrollView 会填满屏幕的其余部分。到目前为止,我所能做的就是让 AdView 显示并正确加载测试广告,但屏幕的其余部分只是黑色。我不知道 ScrollView 到底去了哪里。

我已经尝试了十几种不同的解决方案,包括以编程方式而不是通过 main.xml 加载它以及将 ScrollView 的高度更改为 wrap_content,但仍然有同样的问题。还尝试根据另一个线程的建议将 ScrollView 的高度设置为 0px,将权重设置为 1,但这也不起作用。我猜这是一个简单的答案,但我现在很困惑。

主.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);

有人有什么建议吗?

最佳答案

您的初始 LinearLayout 应指定 android:orientation="vertical",然后使 AdView 高度 wrap_content 相反(或 50dp - 这是我在我的一个应用程序中拥有的)。这应该足够了。 ScrollView 与您拥有的一样正确,带有 wrap_contentandroid:layout_weight="1"

关于android - AdMob AdView 出现了,但我的布局的其余部分不见了 (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6421094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com