如何在广告未填充时隐藏MobClix adview?
这是我的第一个问题,所以请温柔一点。
我的布局基本上如下所示。 我想要做的是:在广告未填充时隐藏 MobclixMMABannerXLAdView。 像这样的线性布局可以实现吗?这可以通过代码的小改动来完成吗?
我的想法是实现 MobclixAdListener 并设置 View.GONE 但似乎必须有一个更短的方法。
所以我的问题是:有没有更短的方法?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:windowSoftInputMode="stateHidden"
android:focusable="true" android:focusableInTouchMode="true"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:id="@+id/mainLayout">
<com.mobclix.android.sdk.MobclixMMABannerXLAdView android:id="@+id/banner_adview" android:layout_height="wrap_content" android:layout_width="320dp"></com.mobclix.android.sdk.MobclixMMABannerXLAdView>
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent" android:layout_height="wrap_content">
</ScrollView>
This is my first question on SO so please be gentle.
My layout basically looks like below.
What i want to do is: hide the MobclixMMABannerXLAdView while the ad is not filled.
Is this possible with an linear layout like this? can this be done with small changes in code?
My idea was to implement the MobclixAdListener and set View.GONE but it seems there has to be a shorter way.
So my question is: is there a shorter way?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:windowSoftInputMode="stateHidden"
android:focusable="true" android:focusableInTouchMode="true"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:id="@+id/mainLayout">
<com.mobclix.android.sdk.MobclixMMABannerXLAdView android:id="@+id/banner_adview" android:layout_height="wrap_content" android:layout_width="320dp"></com.mobclix.android.sdk.MobclixMMABannerXLAdView>
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent" android:layout_height="wrap_content">
</ScrollView>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也有同样的问题。就我而言,我确实实现了 MobclixAdViewListener:
另一件事是我的视图开始消失,当我有广告时,我将显示视图,当我没有广告时,我隐藏视图
I had the same problem. In my case I did implemented the MobclixAdViewListener:
One other thing my view starts GONE and when I have an ad I will show the view and when I don't have an ad I hide the view