1

这是我列表中的加载程序

    @Override
    protected void onPreExecute() {
        progress = ProgressDialog.show(
                getActivity(), null, "Loading...");

        super.onPreExecute();
    }

我在应用程序中有 8 个选项卡,它们几乎相同,不同之处在于加载不同的内容...当我打开我的应用程序时,它们都同时显示,我不会将其更改为仅选择的片段...

4

1 回答 1

0

我使用的布局看起来像这样:

<ViewSwitcher ...>
   <ProgressBar indetermiate="true" />
   <!-- Insert actual content here -->
</ViewSwitcher>

然后您可以使用片段中的代码来控制加载页面和内容之间的切换。

于 2012-12-06T21:12:10.507 回答