我的问题是,当我单击按钮“单击”来调用我的 API 时,它应该在我调用 API 时显示我的进度条(微调器)。相反,我的应用程序卡住不到一秒钟,然后当它完成调用时,它会在短时间内显示我的加载微调器(它只是闪烁)

这是我的代码

private ProgressBar spinner;
public View onCreateView(...)
{
    spinner = (ProgressBar) view.findViewById(R.id.progressBar1);
    spinner.setVisibility(View.GONE);
    ...
}



private class MyTask extends AsyncTask<String, Void, Void> {

    String pageContent = "";
    DataOutputStream wr;


    @Override
    protected void onPreExecute() {
        spinner.setVisibility(View.VISIBLE);
    }

    @Override
    public Void doInBackground(String... params) {

        requestResult.setSuccess(false);
        HttpURLConnection connection;

        try {
            String url = "myURL";

            //I only call my Api here. I delete rest so this won't bother you

            requestResult.setSuccess(true);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        JsonParser parser = new JsonParser();
        //Same here i delete nonimportant

        MyResponse = new Gson().fromJson(jsonContent, MyResponse.class);
        done();
        spinner.setVisibility(View.GONE);
    }

}

我试过猎杀不同的东西,它总是卡住一秒钟,然后我的加载微调器闪烁,我的内容来自 API。

你能帮我解决这个问题吗?

我的xml文件
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scroll_view_send"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <RelativeLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:minWidth="25px"
        android:minHeight="25px">
        <ProgressBar
            android:id="@+id/progressBar1"
            style="?android:attr/progressBarStyleLarge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_below="@id/buttonSend"
            android:visibility="gone"/>
    </RelativeLayout>
</ScrollView>

最佳答案

请尝试此工作示例,将 spinner 传递给您的 MyTask,如下所示:

private class MyTask extends AsyncTask<String, Void, Void> {

    String pageContent = "";
    DataOutputStream wr;

    private final ProgressBar progress;

    public MyTask(final ProgressBar progress) {
        this.progress = progress;
    }


    @Override
    protected void onPreExecute() {
        progress.setVisibility(View.VISIBLE);
    }

    ...

    @Override
    protected void onPostExecute(Void result) {
        JsonParser parser = new JsonParser();
        //Same here i delete nonimportant

        MyResponse = new Gson().fromJson(jsonContent, MyResponse.class);
        done();
        progress.setVisibility(View.GONE);
    }
}

然后调用 new MyTask(progress).execute();
编辑: 在您的问题中,您提到您的手机在调用 MyTask 时卡住...
请检查此步骤以避免在 AsyncTask 中卡住您的 UI:
  • 不要使用新的 MyTask
  • 调用 MyTask().get()
  • 尝试移动到 doInBackground 这部分 MyResponse = new Gson().fromJson(jsonContent, MyResponse.class); done(); 这可能很昂贵。

  • 希望它有帮助!!

    关于android - 用于异步任务的 ProgressBar Spinner 不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35904035/

    10-12 00:33