1

Ad agent - APBRAIN パッケージを含む xml レイアウトがあります。パッケージを使用してレイアウトが膨張しない理由がわかりません-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