0

jsonを使用してphpファイルから情報をロードしています。次に、ページが読み込まれるとすぐにこれをリスト ビューに表示しようとしています。ただし、onCreate() メソッドにあるため、UI スレッドでネットワーク操作を実行できません。代わりに次のコードをどこに置くことができますか:

  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_chores);

    bChore = (Button) findViewById(R.id.addChore);

    bChore.setOnClickListener(this);

    Bundle extras = getIntent().getExtras();
    final String user = extras.getString("username");


    //The URL is the location of the PHP file to validate a user
    String requestURL = SERVER_ADDRESS+"FetchChoreData.php";

    URL url;
    Chore returnedChore = null;
    try {
        //Opens the connection to the PHP files
        //Sets the conditions of the connection
        url = new URL(requestURL);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setReadTimeout(CONNECTION_TIMEOUT);
        conn.setConnectTimeout(CONNECTION_TIMEOUT);
        conn.setRequestMethod("POST");
        conn.setDoInput(true);
        conn.setDoOutput(true);

        //Opens an output stream to send the data to be verified
        // and then closes the all output streams and flushes the output writer
        OutputStream os = conn.getOutputStream();
        BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8"));

        Uri.Builder builder = new Uri.Builder()
                .appendQueryParameter("username",user);

        String query = builder.build().getEncodedQuery();

        writer.write(query);
        writer.flush();
        writer.close();
        os.close();
        //saves the response code to ensure connection was succesful
        int code = conn.getResponseCode();
        Log.d("code", Integer.toString(code));

        //Opens an input stream to retrieve verified data back from the server
        //Starts a String Builder to read the data off the input
        //Closes the BufferedReader once it has finished building the string
        InputStream responseStream = new BufferedInputStream(conn.getInputStream());
        BufferedReader responseStreamReader = new BufferedReader(new InputStreamReader(responseStream));
        String line;
        StringBuilder stringBuilder = new StringBuilder();
        while ((line = responseStreamReader.readLine()) != null)
            stringBuilder.append(line + "/n");
            responseStreamReader.close();


            String response = stringBuilder.toString();
            Log.d("response",response);

            JSONObject jsonResponse = new JSONObject(response);

            //Creates a JSON object from the string
            ArrayList<String> chores = new ArrayList<String>();
            JSONArray choresArray = jsonResponse.getJSONArray("chore");
            for(int i=0; i < choresArray.length() ; i++) {
                JSONObject chore = choresArray.getJSONObject(i);
                String current_chore = chore.optString("chore_name");
                String name = chore.optString("child_username");
                String points = chore.optString("point_value");

                String currentChore = "";
                if(name==null)
                    currentChore = current_chore + "\t" + "Not Claimed" + "\t" + points;
                else
                    currentChore = current_chore + "\t" + name + "\t" + points;
                chores.add(currentChore);
                Log.d("Output", currentChore);

            }


            ArrayAdapter<String> choreAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1, chores);

            ListView listView = (ListView) findViewById(R.id.choreList);
            listView.setAdapter(choreAdapter);
    } catch (Exception e) {
        e.printStackTrace();
    }
}
4

1 に答える 1

0

おそらく、このコードを に入れAsyncTask、UI をAsyncTask's onPostExecute. AsyncTask の UI を更新しないようにしてくださいdoInBackground。そこでデータを取得してください。

実際には、AsyncTask と一緒に setRetainInstance(true) を使用して非 UI フラグメントを使用することをお勧めしますが、それについてはググることができます。

于 2016-03-12T20:30:14.540 に答える