Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8943619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:49:15+00:00 2026-06-15T11:49:15+00:00

Here i have the following code below :- public class OrderActivity extends ListActivity implements

  • 0

Here i have the following code below :-

public class OrderActivity extends ListActivity implements OnClickListener{

ArrayList<String> data,rate, num;
OrderAdapter orderAdapter;
int i = 0;
int s;
TextView tvNumber,tvName,tvRate;
EditText etQty,etRemarks;
Button sendToConfirm,edit,saveAndAdd;
//  EditText qty,remarks;
//OrderAdapter orderAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.order);
    Init();

Here i get arraylists from previous activity

    Bundle extras = getIntent().getExtras(); 
    data = extras.getStringArrayList("list");
    rate = extras.getStringArrayList("rate");
    num = extras.getStringArrayList("number");
    for(String str : data)  {
        Log.d("data", str);

    }
    for(String str1 : rate) {
        Log.d("data", str1);
        //s = Integer.parseInt(st)

    }
    //Log.d("total", s);
    for(String strnum : num)    {
        Log.d("data", strnum);

    }


    String[] captionArray = (String[]) data.toArray(
            new String[data.size()]);

    orderAdapter = new OrderAdapter(
            OrderActivity.this, R.layout.order_list,
            captionArray);
    setListAdapter(orderAdapter);
    return ;
}

Initialize the buttons

public void Init() {
    sendToConfirm = (Button) findViewById(R.id.bsendtoconfirm);
    edit = (Button) findViewById(R.id.bEdit);
    saveAndAdd = (Button) findViewById(R.id.bsave);
    sendToConfirm.setOnClickListener(this);
    edit.setOnClickListener(this);
    saveAndAdd.setOnClickListener(this);
    //etQty.addTextChangedListener(this);
}

Here is the baseAdapter class.

private class OrderAdapter extends BaseAdapter {
    String[] items;

    public OrderAdapter(Context context, int textViewResourceId,
            String[] items) {
        this.items = items;
    } 


    public View getView(final int POSITION, View convertView,
            ViewGroup parent) {

        //          TextView tvNumber,tvName,tvRate;
        //          EditText etQty,etRemarks;

        View view = convertView;

        if (view == null) {
            LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            view = vi.inflate(R.layout.order_list, null);

        } 
        tvNumber = (TextView) view.findViewById(R.id.itemnumber);
        tvName = (TextView) view.findViewById(R.id.itemname);
        tvRate = (TextView) view.findViewById(R.id.itemrate);
        etQty = (EditText) view.findViewById(R.id.editqty);
        etRemarks = (EditText) view.findViewById(R.id.editremarks);
        etQty = (EditText) view.findViewById(R.id.editqty);
        //tvRate = (TextView) v.findViewById(R.id.itemrate);

Ontextchange listener . here whatever i type in the edittext i need to get in the textview ?please help me out with this.

        etQty.addTextChangedListener(new TextWatcher() {

            public void onTextChanged(CharSequence s, int start, int before, int count) {
                // TODO Auto-generated method stub

            }

            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
                // TODO Auto-generated method stub

            }

            public void afterTextChanged(Editable s) {
                // TODO Auto-generated method stub
                String text;
                text=etQty.getText().toString();
                if(text!=null)
                {
                    tvRate.setText(text);
                }
                else {
                    tvRate.setText("You Have Not type anything");
                }
            }
        });

        tvNumber.setText(num.get(POSITION));
        tvName.setText(data.get(POSITION));
        tvRate.setText(rate.get(POSITION));


        return view; 
    }


    public int getCount() {
        // TODO Auto-generated method stub
        return items.length;
    }


    public Object getItem(int position) {
        // TODO Auto-generated method stub
        return position;
    }


    public long getItemId(int position) {
        // TODO Auto-generated method stub
        return position;
    }
}
public void onClick(View v) {
    // TODO Auto-generated method stub
    switch (v.getId()) {
    case R.id.bsendtoconfirm:
        Log.d("click", "send");
        break;

    case R.id.bEdit:
        Log.d("click", "edit");
        break;
    case R.id.bsave:
        Log.d("click", "saved");
        finish();
        break;
    }
}
//  public void afterTextChanged(Editable s) {
//      // TODO Auto-generated method stub
////        String text;
////        text=etQty.getText().toString();
////        if(text!=null)
////        {
////        tvRate.setText(text);
////        }
////        else {
////        tvRate.setText("You Have Not type anything");
////        }
//  }
//  public void beforeTextChanged(CharSequence s, int start, int count,
//          int after) {
//      // TODO Auto-generated method stub
//
//  }
//  public void onTextChanged(CharSequence s, int start, int before, int count) {
//      // TODO Auto-generated method stub
//
//  }

}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T11:49:16+00:00Added an answer on June 15, 2026 at 11:49 am

    hi you can use the code below to do this,

    for source:
    https://dl.dropbox.com/u/68130108/ListViewEditItem.rar

    public class OrderActivity extends ListActivity implements OnClickListener{
    // create static object to hold your widget in listview
    static TextView sTxt;
    static EditText sEdTxt;
    static int p;
    
    .
    .
    .
    .
    
    
    etQty.setId(position);
    etQty.setTag(tvRate);           
    etQty.setOnFocusChangeListener(new OnFocusChangeListener() {
    
    public void onFocusChange(View v, boolean hasFocus) {
        sPosition = v.getId();
        sTxt = (TextView) v.getTag();
        EditText e = ((EditText) v);
        if (!e.getText().toString().equals("")) {
            if (hasFocus) {
                    // change your num arraylist values at the position
                    // because you can’t save anything on ListView Item.
                num.set(sPosition,e.getText().toString());                          
            }                       
        }
    }
    });
    
    editText.addTextChangedListener(new TextWatcher() {
       @Override
       public void onTextChanged(CharSequence s, int start,int before, int count) {}
       @Override
       public void beforeTextChanged(CharSequence s, int start,int count, int after) { }
       @Override
       public void afterTextChanged(Editable s) {
           // every text change setText of textview 
           sTxt.setText(s);
       }
    });
    
    tvRate.setText(num.get(position));
    .
    .
    .
    .
    

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following code, original code is: here Public Class Form1 Private Sub Form1_Load(ByVal
I have following code: public static void ProcessStep(Action action) { //do something here if
I have this following code, here CssClass is of the String type. <asp:Panel ID=Panel1
I have the following code, which compiles but doesn't bring back any data. Here
Here is my problem in C# : I have the following classes: public class
I have the following structure. public class ToolSettings { public string Extension { get;
Why does following code not throws exception? import java.util.ArrayList; import java.util.List; @SuppressWarnings(unchecked) public class
I have the following code here that won't run on ARC since it combines
I have the following code. Here I am matching the vowels characters words :
Right, starting to go crazy here. I have the following code: var query =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.