Page 119 - 3-2
P. 119

startActivity(go);
                            Log.d(" 여긴가","owner_2,   리스트 출력하러 감");


                            return sb.toString();
                        } catch (Exception e) {
                            Log.d(" 오류남 owner: ", e.getMessage());
                            return new String("Exception: " + e.getMessage());
                        }
                    }


                    @Override
                    protected void onPreExecute() {
                    }




                    @Override
                    protected void onPostExecute(String result) {
                        super.onPostExecute(result);
                        Log.d(result, "final result");
                    }




                }
            }
            *******************************MainActivity_tag***********************package
            kr.icehs.intec.emart;


            import android.app.ListActivity;
            import android.app.ProgressDialog;
            import android.content.Intent;
            import android.os.AsyncTask;
            import android.os.Bundle;
            import android.util.Log;
            import android.view.View;
            import android.widget.AdapterView;
            import android.widget.ListAdapter;
            import android.widget.ListView;
            import android.widget.SimpleAdapter;
            import android.widget.TextView;
            import android.widget.Toast;


            import org.apache.http.NameValuePair;
            import org.json.JSONArray;
            import org.json.JSONException;
            import org.json.JSONObject;


                                                         - 119 -
   114   115   116   117   118   119   120   121   122   123   124