滚动时Listview中的文本值正在改变

时间:2018-06-12 10:36:58

标签: android xml android-layout listview

这是我对适配器的说明

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/fix_container"
>
<TextView
    android:id="@+id/tv1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="4dp"
    android:textSize="15sp"
    android:textStyle="bold"
    android:text="1"
    android:textColor="@color/black"/>
<TextView
    android:id="@+id/tv2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="15sp"
    android:textColor="@color/black"
    android:layout_toRightOf="@id/tv1"
    android:layout_marginTop="4dp"
    android:textStyle="bold"
    android:layout_marginLeft="10dp"
    android:text="1"
    android:layout_toEndOf="@id/tv1"
    android:layout_marginStart="10dp" />
<TextView
    android:id="@+id/tv3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@color/black"
    android:textSize="15sp"
    android:layout_toRightOf="@id/tv2"
    android:layout_marginTop="4dp"
    android:layout_marginLeft="10dp"
    android:layout_toEndOf="@id/tv2"
    android:text="1"
    android:layout_marginStart="10dp" />

CustomListAdapter.java

public class CustomListAdapter extends BaseAdapter{
private LayoutInflater layoutInflater;
private Production_Dispatch_Res_DTO rem_res_dto;
List<String> eff_list = new ArrayList<String>();
String[] eff_list_split;

public CustomListAdapter(Context context, Production_Dispatch_Res_DTO res, 
List<String> eff_list) {
    this.rem_res_dto = res;
    layoutInflater = LayoutInflater.from(context);
    this.eff_list = eff_list;
}

@Override
public int getCount() {
    return eff_list.size();
}

@Override
public Object getItem(int position) {
    return eff_list.get(position);
}

@Override
public long getItemId(int position) {
    return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
    try{
        ViewHolder holder;
        if(convertView == null){
            convertView = layoutInflater.inflate(R.layout.lists,null);
            holder = new ViewHolder();
            holder.tv1 = (TextView) convertView.findViewById(R.id.tv1);
            holder.tv2 = (TextView) convertView.findViewById(R.id.tv2);
            holder.tv3 = (TextView) convertView.findViewById(R.id.tv3);
            convertView.setTag(holder);
        }else {
            holder = (ViewHolder) convertView.getTag();
        }
        eff_list_split= eff_list.get(position).split(",");

        int eff_list_split_size = eff_list_split.length;

        switch (eff_list_split_size){
            case 1:
                if(eff_list_split[0].equals("-1")){
                    holder.tv1.setText("");
                }
                else
                holder.tv1.setText(eff_list_split[0]);
                break;
            case 2:
                if(eff_list_split[0].equals("-1"))
                    holder.tv1.setText("");
                else
                holder.tv1.setText(eff_list_split[0]);

                if(eff_list_split[1].equals("-1"))
                    holder.tv2.setText("");

                else
                holder.tv2.setText(eff_list_split[1]);
                break;
            case 3:
                if(eff_list_split[0].equals("-1"))
                    holder.tv1.setText("");
                else
                    holder.tv1.setText(eff_list_split[0]);

                if(eff_list_split[1].equals("-1"))
                    holder.tv2.setText("");

                else
                    holder.tv2.setText(eff_list_split[1]);

                if(eff_list_split[2].equals("-1"))
                    holder.tv3.setText("");
                else
                holder.tv3.setText(eff_list_split[2]);
                break;
    }
    }catch (Exception e){
        Log.d(VilanConstants.TAG,"/Excp @listAdp"+ e.toString());
    }

    return convertView;
}

public class ViewHolder{
    public TextView tv1;
    public TextView tv2;
    public TextView tv3;
}
}

我在布局中采用了listview,就像这样

 <ListView
    android:id="@+id/product_list_details"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:dividerHeight="3dp"
    android:layout_marginTop="10dp"
    android:layout_below="@+id/card_view_dispatch"/>

一开始它正确。虽然每次滚动时滚动文本视图中的列表视图数据都会发生变化。

我已尝试过stackoverflow中的解决方案,这些解决方案之前已经回答过。但他们不适合我。

任何帮助都将不胜感激。

我是新手。

谢谢。

3 个答案:

答案 0 :(得分:0)

试试这个,

holder.tv1 = (TextView) convertView.findViewById(R.id.tv1);
holder.tv2 = (TextView) convertView.findViewById(R.id.tv2);
holder.tv3 = (TextView) convertView.findViewById(R.id.tv3);

之后

if(convertView == null){
     .....
} else {
      ....
}

检查并尝试。当convertView为null时,您正在初始化。但每次都这样做并检查它是否有效?

答案 1 :(得分:0)

更新此代码:

 public class ViewHolder{
    public TextView tv1;
    public TextView tv2;
    public TextView tv3;
  }

到此

public class ViewHolder{
            public TextView tv1;
            public TextView tv2;
            public TextView tv3;

        holder.tv1 = (TextView) convertView.findViewById(R.id.tv1);
        holder.tv2 = (TextView) convertView.findViewById(R.id.tv2);
        holder.tv3 = (TextView) convertView.findViewById(R.id.tv3);
        }

答案 2 :(得分:0)

我见过你的代码。这是正确的。但是,您需要在所有情况1,2和3中使用所有视图(TextView),因为当案例1为真时,则仅使用tv1(TextView)而不使用其他视图。因此,getView()方法也会自动使用其他视图。因为滚动列表时反复调用getView()方法。

尝试在所有情况下使用所有视图或根据需要更改逻辑。但是,如果情况属实,则必须使用所有视图。