ProgressDialog doesn't show up in AsyncTask
问题 I am creating an android app that depends on data that the app gets from the database. To get this data I have the following class (this class gets data from the database in JSON, translates it and returns it): public class Json { public String jsonResult; private Activity activity; private String url = "http://json.example.org/json.php"; private String db, query; public Json(Activity activity) { this.activity = activity; } public String accessWebService(String db, String query) {