android无法在自定义对话框中的listview中使用所有editext值

时间:2016-04-29 06:40:16

标签: java android listview dialog custom-adapter

我在自定义对话框中有一个listview。在该列表中,我有一个文本字段,每行有一个Edittext。我正在使用editTextWatcher来处理确切位置上的所有edittext值。达到这个工作正常。我在listView下的该对话框上有一个保存按钮。点击保存后,我想将所有editext数据发布到服务器。但是,我只能发布前面视图中edittext的值。

对话框布局:

private void showDialog(){

    dialog1 = new Dialog(this);
    final Dialog tradDialog = new Dialog(this, android.R.style.Theme_Light_NoTitleBar);
    //tradDialog.setContentView(R.layout.trad_dialog_layout);
    View view = getLayoutInflater().inflate(R.layout.trad_dialog_layout_individual, null);
    //tradDialog.setContentView(R.layout.trad_dialog_layout);
    tradDialog.setCanceledOnTouchOutside(false);
   // holder.mWatcher = new MutableWatcher();
    lv = (ListView) view.findViewById(R.id.productsListView);
    RelativeLayout saveBtnLayout = (RelativeLayout) view.findViewById(R.id.saveBtnLayout);
    // Change MyActivity.this and myListOfItems to your own values
    clad = new CustomListAdapterDialog(SolutionActivity.this, individual_productChoosedAr);

    lv.setAdapter(clad);
    clad.notifyDataSetChanged();
  //save button for posting all edittext values to server 
    saveBtnLayout.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            for (int i = 0; i < lv.getChildCount(); i++) {
                    v = lv.getChildAt(i);
                    etPrice = (EditText) v.findViewById(R.id.etPrice);
                    ProductPrice = etPrice.getText().toString();
                    if(ProductPrice.equals("")){
                        ProductPrice = "NULL";
                    }
                    productPriceAr.add(ProductPrice);
                }
            Toast toast = Toast.makeText(getApplicationContext(),"Please wait...",Toast.LENGTH_LONG);
            toast.show();
            SendIndividualDatatoServer sendIndividualData = new SendIndividualDatatoServer();
            sendIndividualData.execute();
        }
    });
    //lv.setOnItemClickListener(........);

    dialog1.setContentView(view);
    dialog1.show();

}

自定义收件人:

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

        final int pos = position ;
        final ViewHolder holder;
        if (convertView == null) {
            convertView = layoutInflater.inflate(R.layout.custom_layout_individual, null);
            holder = new ViewHolder();
            holder.product = (TextView) convertView.findViewById(R.id.tvProductName);
            holder.price = (EditText) convertView.findViewById((R.id.etPrice));
            holder.mWatcher = new MutableWatcher();
            holder.price.addTextChangedListener(holder.mWatcher);
            etPrice = (EditText) convertView.findViewById(R.id.etPrice);
            convertView.setTag(holder);

        } else {
            holder = (ViewHolder) convertView.getTag();
        }
         holder.mWatcher.setActive(false);
        holder.price.setText(myList.get(position), TextView.BufferType.EDITABLE);
        holder.mWatcher.setPosition(position);
        holder.mWatcher.setActive(true);
        holder.product.setText(listData.get(position).P_Name);
        productIds = listData.get(position).Category_Id;
        return convertView;
    }

TextWatcher类:

@Override
    public void afterTextChanged(final Editable s) {
//            SolutionActivity.this.runOnUiThread(new Runnable() {
//                @Override
//                public void run() {
                if (mActive) {
                    myList.put(mPosition, s.toString());
                    System.out.print(s.toString());
                }

2 个答案:

答案 0 :(得分:0)

你传递给CustomAdapter的是什么? 您应该使用具有包含editText文本的属性的自定义对象。 因此,您将把自定义对象类型的ArrayList myList传递给适配器。 每当用户输入内容时,您都会在listview中获取editText的位置,然后在该位置获取自定义对象,并将editText值写入对象的属性中。

像这样:

MyCustomClass object = myList.get(position);
object.setValue(edtText.getText());

像这样,你将获得arrayList中的所有数据。

单击“保存”按钮,您可以遍历arrayList并检查单个对象属性,如果有数据将其添加到productPriceList中。

希望这有帮助!

答案 1 :(得分:0)

最后我得到了答案:  我计算了列表项并仅在Hashmap中放置了位置。

Dock="Fill"

并且用于发布我使用的所有值:

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        int mCount = lv.getCount();
        if(mIndCount==1){
            for(int i = 0; i<mCount;i++){
                myList.put(i,"");
            }
            mIndCount=2;
        }
    }