作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一段时间我一直在为这个问题苦思冥想。试图让 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_content
和 android:layout_weight="1"
。
关于android - AdMob AdView 出现了,但我的布局的其余部分不见了 (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6421094/
我是一名优秀的程序员,十分优秀!