在活动标题栏中显示加载图标

时间:2010-12-09 15:24:21

标签: android user-interface

如何在活动标题栏中显示加载图标?

1 个答案:

答案 0 :(得分:37)

@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
    setContentView(R.layout.your_layout);
}

然后......你想要的地方:

// then, you can do this to show the icon
setProgressBarIndeterminateVisibility(true);
//or to hide it
setProgressBarIndeterminateVisibility(false);

请务必在requestWindowFeature之前使用setContentView