0

我的问题有点奇怪......基本上我有一个像上面那样的 ListView :

<ListView
    android:id="@+id/listViewMenu"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/order_button"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true" >

</ListView>

为此,我将元素定义为如下所示:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="horizontal"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.7">

        <TextView android:id="@+id/name"
          android:textSize="14sp"
          android:textStyle="bold"
          android:textColor="#0033CC"
          android:layout_marginLeft="10sp"
          android:layout_marginTop="5sp"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
        />

        <TextView android:id="@+id/price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
        />

        <TextView android:id="@+id/description"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
        />

    </LinearLayout>

    <EditText
        android:id="@+id/quantityEdit"
        android:layout_height="85dp"
        android:layout_width="85dp"
        android:textSize="12sp"
        android:textColor="#0033CC"
        android:layout_marginRight="15dp"
        android:layout_weight="0.3"
        android:inputType="number"
        android:ems="10"
        android:hint="@string/quantity_show">

        <requestFocus />
    </EditText>

    </LinearLayout>

这是我的新编辑插件

public MyCustomBaseAdapter(Context context, ArrayList<Product> products) {
         this.products = products;
         this.mInflater = LayoutInflater.from(context);

         for (int i=0;i<products.size();i++){
             editTextsVlues.add("");
         }
     }

     public int getCount() {
         return products.size();
     }

     public Object getItem(int position) {
         return products.get(position);
     }

     public long getItemId(int position) {
         return position;
     }

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

         ViewHolder holder;

         if (convertView == null) {
             convertView = mInflater.inflate(R.layout.product_item, null);
             holder = new ViewHolder();
             holder.quantity = (EditText) convertView.findViewById(R.id.quantityEdit);
             holder.picView = (ImageView) convertView.findViewById(R.id.pic_view);

             convertView.setTag(holder);
         } else {
             holder = (ViewHolder) convertView.getTag();
         }



         holder.quantity.setText(editTextsVlues.get(position));

         holder.picView.setImageBitmap(products.get(position).getPicture());

         positionListener = position;

         holder.quantity.addTextChangedListener(new TextWatcher() {

             @Override
             public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
                 // When user changed the Text
                 editTextsVlues.set(positionListener, cs.toString());
             }

             @Override
             public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
                     int arg3) {
                 // TODO Auto-generated method stub

             }

             @Override
             public void afterTextChanged(Editable arg0) {
                 // TODO Auto-generated method stub

             }
         });

         return convertView;
     }


} 

我面临的问题是,当我在列表中有更多元素(它们不适合我的屏幕)时,当我在 EditText 中输入一个值时,下面的另一个 EditText 正在填充......为什么会这样发生...?我在网上没有找到类似的案例。

EDTI:Sam,我尝试了您的方法..但是我的编程技能不是很好...您认为现在适配器的问题是什么?...当我输入一个值并失去对编辑文本的关注时,它只是删除它... :(

EDIT2:本网站的教程帮助我解决了我的问题:http: //vikaskanani.wordpress.com/2011/07/27/android-focusable-edittext-inside-listview/ 不使用 TextWatcher

4

1 回答 1

1

当我在 EditText 中输入一个值时,下面的另一个 EditText 正在被填充...为什么会发生这种情况...?

ListView 回收每一行的布局。可以这样想:当您可以使用大约 10 行并在它们滚出屏幕后简单地重复使用它们时,为什么还要有 1000 个独特的布局(这很慢)?Turbo Charge your UI和其他 Google I/O 演示文稿中详细介绍了这个概念,非常值得一看。

无论如何,解决方案很简单,将每个 EditText 的内容保存在适配器中,并以与恢复 TextView 字符串相同的方式恢复它们的值。


添加

我怎么做?:)

将新成员添加到您的适配器:

private List<String> editTexts = new ArrayList<String>(); // Please think of a better name :)

使用TextWatcher记录对每个 EditText 的任何更改并将这些字符串保存在此列表中。然后用getView()以下方法恢复值:

holder.quantity.setText(editTexts.get(position));
于 2013-04-13T15:49:30.760 回答