如果我从listview中单击特定行,如何在Edittext中获取特定值

时间:2014-04-26 06:21:53

标签: android listview android-edittext row

实际上是Android的新手。在listview中有项目列表。如果我单击listview中的特定行。我想在edittext中获得特别的价值。 例如..

1

拉吉

2

拉姆

哥印拜陀

列表视图。如果我点击第一行列表视图... RAJ 名称将进入 edittext ..

请帮助我......提前谢谢

这是我的listview适配器。

私有类JSONParse扩展了AsyncTask {

    private ProgressDialog pDialog;
    @Override
    protected void onPreExecute() {
    super.onPreExecute();

    DateTime = (TextView)findViewById(R.id.textView1);
    Status = (TextView)findViewById(R.id.textView2);

    JobNo = (EditText) findViewById(R.id.add_JobNo);
    //Status = (EditText) findViewById(R.id.add_Status);
    //DateTime = (EditText) findViewById(R.id.add_Date_Time);

    pDialog = new ProgressDialog(Add_Update_User.this);
    pDialog.setMessage("Processing Please Wait ...");
    pDialog.setIndeterminate(false);
    pDialog.setCancelable(true);
    pDialog.show();

    }

    @Override
    protected JSONObject doInBackground(String... args) {

        JSONParser jParser = new JSONParser();
        String flag="S" ;
         ArrayList<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
        params.clear();

             params.add(new BasicNameValuePair("JobNo",JobNo.getText().toString()));
             params.add(new BasicNameValuePair("flag",flag));
            //Getting JSON from URL
             JSONObject json = jParser.getJSONFromUrl(url,params);
            return json;

    }

    protected void onPostExecute(JSONObject json) {
        pDialog.dismiss();

         try {
             if (JobNo.getText().toString().equals("") )
            {
                Toast.makeText(Add_Update_User.this, "The Field Should not be null", Toast.LENGTH_SHORT).show();

                 }
             else
             {
                // Getting JSON Array from URL
                    Cargo = json.getJSONArray(TAG_CargoTrack);
                    for(int i = 0; i < Cargo.length(); i++){
                    JSONObject c = Cargo.getJSONObject(i);



                    String JobNo = c.getString(TAG_JobNo);
                    String Status = c.getString(TAG_Status);
                    String Datetime = c.getString(TAG_DateTime);


                    // Adding value HashMap key => value

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

                    map.put(TAG_JobNo, JobNo);
                    map.put(TAG_Status, Status);
                    map.put(TAG_DateTime, Datetime);

                    CargoTracklist.add(map);
                    list=(ListView)findViewById(R.id.listView1);
                    //SimpleAdapter adapter = new SimpleAdapter(Add_Update_User.this, CargoTracklist,
                    ListAdapter adapter = new SimpleAdapter(Add_Update_User.this, CargoTracklist,
                            R.layout.search,
                            new String[] { TAG_JobNo,TAG_Status, TAG_DateTime }, new int[] {
                                    R.id.user_JobNo_txt,R.id.user_Status_txt, R.id.user_Date_Time_txt });

                    list.setAdapter(adapter);

2 个答案:

答案 0 :(得分:1)

试试这个..它会起作用。

  

How to get the value of a Listview item which is clicked in android?

     

How to get TextView values from a listView Items?

listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> arg0, View view, int position,
                    long arg3) {


                String my_value = jobNo.getText().toString();

            }
        });

答案 1 :(得分:1)

如果您是Android的新手,您应该看一下本教程:

http://www.vogella.com/tutorials/AndroidListView/article.html#listview_adapterlistener

它让您对如何使用listviews有了良好的印象。您还可以找到有关如何使用自定义适配器的有用信息......