我有一个xml布局,其中包含Ad代理 - APBRAIN包。我不明白为什么布局没有使用包膨胀 - com.appbrain.AppBrainBanner。 xml中显示的其他2个按钮正确显示。请帮我解决这个问题。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="6"
android:weightSum="150" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="50"
android:gravity="left"
android:orientation="horizontal" >
<Button
android:id="@+id/bQuizHome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/nextslide"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="50"
android:gravity="center"
android:orientation="horizontal" >
<com.appbrain.AppBrainBanner
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="50"
android:gravity="right"
android:orientation="horizontal" >
<Button
android:id="@+id/bNext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/nextslide"/>
</LinearLayout>
</LinearLayout>