Java Android ProgressDialog在检索数据时显示

Java Android ProgressDialog在检索数据时显示,java,android,android-layout,Java,Android,Android Layout,我创建了一个从服务器读取json数据的过程。读取完数据后,我希望在页面读取数据时显示ProgressDialog,并在所有数据显示到listview时消失 我已作出并提出: ProgressDialog progress = new ProgressDialog(this); progress.setMessage("Wait while loading..."); progress.show(); 但总是失败 对于这种情况,所有数据都已成功地正确显示在listview中,我只想使用Progr

我创建了一个从服务器读取json数据的过程。读取完数据后,我希望在页面读取数据时显示ProgressDialog,并在所有数据显示到listview时消失

我已作出并提出:

ProgressDialog progress = new ProgressDialog(this);
progress.setMessage("Wait while loading...");
progress.show();
但总是失败

对于这种情况,所有数据都已成功地正确显示在listview中,我只想使用ProgressDialog帮助显示数据检索过程

我的活动:

package com.joris.moviesmonitoring;

import java.util.ArrayList;
import java.util.HashMap;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import com.joris.moviesmonitoring.JSONParser;

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.StrictMode;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;

public class MainActivity extends ListActivity {

        // url to make request
        private static String url = "http://api.mydomain.info/contacts/";

        // JSON Node names
        private static final String TAG_CONTACTS = "contacts";
        private static final String TAG_ID = "id";
        private static final String TAG_NAME = "name";
        private static final String TAG_EMAIL = "email";
        private static final String TAG_PHONE = "phone";
        private static final String TAG_PHONE_MOBILE = "mobile";

        // contacts JSONArray
        JSONArray contacts = null;

        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);

            StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
            .permitAll().build();
            StrictMode.setThreadPolicy(policy);


            // Hashmap for ListView
            ArrayList<HashMap<String, String>> contactList = new ArrayList<HashMap<String, String>>();

            // Creating JSON Parser instance
            JSONParser jParser = new JSONParser();

            // getting JSON string from URL
            JSONObject json = jParser.getJSONFromUrl(url);


            try {
                // Getting Array of Contacts
                contacts = json.getJSONArray(TAG_CONTACTS);

                // looping through All Contacts
                for(int i = 0; i < contacts.length(); i++){
                    JSONObject c = contacts.getJSONObject(i);

                    // Storing each json item in variable
                    String id = c.getString(TAG_ID);
                    String name = c.getString(TAG_NAME);
                    String email = c.getString(TAG_EMAIL);

                    // Phone number is agin JSON Object
                    JSONObject phone = c.getJSONObject(TAG_PHONE);
                    String mobile = phone.getString(TAG_PHONE_MOBILE);

                    // creating new HashMap
                    HashMap<String, String> map = new HashMap<String, String>();

                    // adding each child node to HashMap key => value
                    map.put(TAG_ID, id);
                    map.put(TAG_NAME, name);
                    map.put(TAG_EMAIL, email);
                    map.put(TAG_PHONE_MOBILE, mobile);

                    // adding HashList to ArrayList
                    contactList.add(map);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }



            /**
             * Updating parsed JSON data into ListView
             * */
            ListAdapter adapter = new SimpleAdapter(this, contactList,
                    R.layout.list_item,
                    new String[] { 
                        TAG_NAME, 
                        TAG_EMAIL, 
                        TAG_PHONE_MOBILE,
                        TAG_PHONE_MOBILE
                    }, new int[] {
                            R.id.name, 
                            R.id.email, 
                            R.id.mobile,
                            R.id.desc
                    });

            setListAdapter(adapter);


            // selecting single ListView item
            ListView lv = getListView();

            // Launching new screen on Selecting Single ListItem
            lv.setOnItemClickListener(new OnItemClickListener() {

                @Override
                public void onItemClick(AdapterView<?> parent, View view,
                        int position, long id) {
                    // getting values from selected ListItem
                    String name = ((TextView) view.findViewById(R.id.name)).getText().toString();
                    String cost = ((TextView) view.findViewById(R.id.email)).getText().toString();
                    String description = ((TextView) view.findViewById(R.id.mobile)).getText().toString();


                    // Starting new intent
                    Intent in = new Intent(getApplicationContext(), SingleMenuItemActivity.class);
                    in.putExtra(TAG_NAME, name);
                    in.putExtra(TAG_EMAIL, cost);
                    in.putExtra(TAG_PHONE_MOBILE, description);
                    startActivity(in);

                }
            });



        }



}
我试过像:
但结果总是失败。我对学习java非常陌生。

它可能没有出现,因为数据在对话框创建之前就完成了,所以您在对话框出现之前就取消了它。要测试这一点,请不要在处理完成后取消对话框,让它继续。如果出现拨号,那就是你的问题

你说它失败是什么意思?应用程序崩溃了还是发生了什么?不,数据采集时不显示ProgressDialog。不要尝试在onCreate中创建整个应用程序。了解活动生命周期。“仅在第一次设置活动时使用onCreate。@Simon您能给我举几个例子吗?”?我对学习java android很陌生。示例没有用处。首先了解生命周期,然后思考您的设计。主要的问题是,应用程序UI在onCreate之后才会构建;果然,数据会与ProgressDialog一起出现。但在进程开始之前,ProgressDialog不会出现。在listview中释放数据之前,页面为空白。ProgressDialog不应出现在此处。我该怎么做呢?你可以使用一个处理程序将处理延迟一两秒钟,以允许对话框显示,但是让用户等待没有理由似乎是毫无意义的是。。不应该是那样的…怎么样?您习惯使用它吗?AsyncTask是显示进度对话框的首选方式,但您仍可能看到未显示该对话框的相同结果。最好的做法是在对话框中使用asynctask,不要担心它是否显示,因为如果进程运行的时间足够长,它会显示,如果没有,那么用户可能不会注意到