在我的应用程序的主页中,服务器向我发送了一些标志。其中之一是广告标志。如果它设置为 true 我需要显示广告,如果它设置为 false 我不应该显示它。
现在,问题。我需要像这样将广告空间放在 XML 文件中。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<RileativeLayout
android:id="@+id/adv"
android:layout_width="fill_parent"
android:layout_height="100dip">
</RileativeLayout>
.
.
.
</LinearLayout >
根据上面的代码,如果标志设置为 false,我不会显示广告,但差距仍留在我的屏幕上。如何动态地从我的代码中删除它并转移其他视图(这是它的打击)?