2012-04-13 66 views
0

在我的活動中,我動態地創建了5個選項卡。我的選項卡內容不能填滿整個空間

我想弄清楚爲什麼我的加載動畫不能填滿整個空間。現在它只是標籤內容頂部的一個小矩形(請參閱http://imageshack.us/photo/my-images/594/loadingwf.png/)。

這裏是我創建的每個選項卡的內容代碼:

for (int i = 0; i < NewsCategory.values().length; i++) { 
    View tabView = createTabView(tabHost.getContext(), NewsCategory.getValueAt(i).getName()); 

    tabNewslist[i] = new Newslist(this, NewsCategory.getValueAt(i)); 
    getLayoutInflater().inflate(R.layout.loading_anim, tabHost.getTabContentView(), true); 
    tabHost.addTab(tabHost.newTabSpec(NewsCategory.getValueAt(i).getName()).setIndicator(tabView).setContent(R.id.loadingAnim)); 
} 

這裏是動畫的XML文件:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/loadingAnim" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="#FFFFFF" 
    android:gravity="center_horizontal" 
    android:orientation="horizontal" 
    android:padding="5dp" > 

    <ProgressBar 
     android:id="@+id/progressBar" 
     style="?android:attr/progressBarStyleSmall" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center_vertical" /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center_vertical" 
     android:text="@string/loading" /> 

</LinearLayout> 

回答

1

我覺得這部分代碼是正確的。 你的活動xml有什麼?

+0

嗨,首先感謝您的時間。我覺得自己像一個白癡正確的知道,因爲你是對的我的代碼是正確的...問題出在活動的XML佈局,我只是改變了wrap_content fill_parent,它的工作! – Fr4nz 2012-04-13 18:26:48

相關問題