在我的活动中,我动态创建了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>
答案 0 :(得分:1)
我认为这部分代码是正确的。 您的活动xml中有什么?