这是我关于 SO 的第一个问题,所以请保持温和。
我的布局基本上如下所示。我想要做的是:在未填充广告时隐藏 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>