0

こんにちは、ボタンをクリックすると次のアクティビティに文字列を送信するアプリを作成しました.2番目のアクティビティでは、値を使用してデータベースからデータを取得しています。

私は次のことをしています。

    Intent myIntent = getIntent(); // getting the value from the previous activity
    myIntent.getStringExtra("lbl_name");
    postParameters = new ArrayList<NameValuePair>();
    postParameters.add(new BasicNameValuePair("product", lbl_name//passing the name to the database .getText().toString()));

問題は、lbl_name を認識していないことです。

インターネットで検索しましたが、解決策が見つかりませんでした。私がそれを正しく行っているかどうか教えてください。

値を渡すためのコード。

Intent myIntent = new Intent(SinglePlaceActivity.this,RecoProd.class);
                                        myIntent.putExtra("lbl_name", "lbl_name");
                                        SinglePlaceActivity.this.startActivity(myIntent);

データベースにアクセスするためのコード。

public class RecoProd extends Activity {
    EditText pd;
    TextView error;

    ArrayList<NameValuePair> postParameters;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {

        try {
            Class<?> strictModeClass = Class.forName("android.os.StrictMode", true, Thread.currentThread()
                    .getContextClassLoader());

            Class<?> threadPolicyClass = Class.forName("android.os.StrictMode$ThreadPolicy", true, Thread
                    .currentThread().getContextClassLoader());

            Class<?> threadPolicyBuilderClass = Class.forName("android.os.StrictMode$ThreadPolicy$Builder", true,
                    Thread.currentThread().getContextClassLoader());

            Method setThreadPolicyMethod = strictModeClass.getMethod("setThreadPolicy", threadPolicyClass);

            Method detectAllMethod = threadPolicyBuilderClass.getMethod("detectAll");
            Method penaltyMethod = threadPolicyBuilderClass.getMethod("penaltyLog");
            Method buildMethod = threadPolicyBuilderClass.getMethod("build");

            Constructor<?> threadPolicyBuilderConstructor = threadPolicyBuilderClass.getConstructor();
            Object threadPolicyBuilderObject = threadPolicyBuilderConstructor.newInstance();

            Object obj = detectAllMethod.invoke(threadPolicyBuilderObject);

            obj = penaltyMethod.invoke(obj);
            Object threadPolicyObject = buildMethod.invoke(obj);
            setThreadPolicyMethod.invoke(strictModeClass, threadPolicyObject);

        } catch (Exception ex) {
            String TAG = null;
            Log.w(TAG, ex);
        }
        super.onCreate(savedInstanceState);
        setContentView(R.layout.recomain);
        Intent myIntent = getIntent(); // getting the value from the previous activity
        String lbl_name= myIntent.getStringExtra("lbl_name");//< get lbl_name from Intent
        pd = (EditText) findViewById(R.id.name);

        error = (TextView) findViewById(R.id.showresult);


                postParameters = new ArrayList<NameValuePair>();
                postParameters.add(new BasicNameValuePair("product", lbl_name
                        ));


                // String valid = "1";

                DownloadWebPageTask dw = new DownloadWebPageTask();
                dw.execute("");

    }

    private class DownloadWebPageTask extends AsyncTask<String, Void, String> {
        @Override
        protected String doInBackground(String... urls) {
            String response = null;
            for (String url : urls) {
                try {
                    response = CustomHttpClient.executeHttpPost("http://192.168.1.7/abc/check2.php", postParameters);  
                    String res = response.toString();
                    // res = res.trim();
                    res = res.replaceAll("\\s+", "");
                    // error.setText(res);
                    try{
                        res = "";
                  JSONArray jArray = new JSONArray(res);
                        for(int i=0;i<jArray.length();i++){
                                JSONObject json_data = jArray.getJSONObject(i);
                                Log.i("prod_id","id: "+json_data.getInt("prod_id")+
                                        ", prod_name: "+json_data.getString("prod_name")+
                                        ", prod_category: "+json_data.getString("prod_category")+
                                        ", prod_cost: "+json_data.getDouble("prod_cost")
                                );
                                //Get an output to the screen
                                res += "\n" + json_data.getInt("prod_id") + " -> "+ json_data.getString("prod_name");
                        }
                }
                catch(JSONException e){
                        Log.e("log_tag", "Error parsing data "+e.toString());
                }

                try{
                 error.setText(res);
                }
                catch(Exception e){
                 Log.e("log_tag","Error in Display!" + e.toString());;          
                }   
           }
                 catch (Exception e) {
            Log.e("log_tag","Error in http connection!!" + e.toString());     
           }
            }
            return response;

               }
        @Override
        protected void onPostExecute(String result) {
        }
    }
}
4

2 に答える 2

1

lbl_nameIntent から次のように値を抽出する必要があります。

Intent myIntent = getIntent(); // getting the value from the previous activity
 String lbl_name= myIntent.getStringExtra("lbl_name");//< get lbl_name from Intent
 postParameters = new ArrayList<NameValuePair>();
 postParameters.add(new BasicNameValuePair("product",lbl_name));

または lbl_name が前のアクティビティで静的である場合、次のようにアクセスできます。

postParameters.add(new BasicNameValuePair("product",
                              Your_prev_Activity_Name.lbl_name));
于 2013-01-29T05:06:25.440 に答える
1

Intent以下のように文字列値を渡してみてください。

     Intent myIntent = new Intent(SinglePlaceActivity.this,RecoProd.class);
       myIntent.putExtra("lbl_name", "lbl_name");
       SinglePlaceActivity.this.startActivity(myIntent);

以下を使用して値にアクセスしますgetString();

Intent myIntent = getIntent(); // getting the value from the previous activity
String lbl_name=myIntent.getString("lbl_name");
postParameters = new ArrayList<NameValuePair>();
postParameters.add(new BasicNameValuePair("product", lbl_name//passing the name to the database .getText().toString()));
于 2013-01-29T05:09:23.333 に答える