1

我有一个 xml 布局,其中包含广告代理 - APBRAIN 包。我不明白为什么布局没有使用包膨胀 - com.appbrain.AppBrainBanner。xml 中显示的其他 2 个按钮已正确显示。请帮我解决这个问题。

XML:

<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> 
4

0 回答 0