0

嗨,我正在开发一个 android SMS 应用程序,我想在ListView. 如果它发送短信,我正在改变适配器的颜色。如果让我们说 ListView 上有 10 个项目,那么下面的代码可以正常工作。

    if(type.equalsIgnoreCase("1"))
    {
    //received sms  

    }
    else if(type.equalsIgnoreCase("2"))
    {
       //sent sms
        msg.setBackgroundColor(Color.parseColor("#D5F7C3"));
        msgdt.setBackgroundColor(Color.parseColor("#BDF8C7"));
     }

但是在滚动它时,第 11 项仍然保留为以前的视图颜色。当我来回滚动时,列表视图中的颜色会不断变化。我已经android:cacheColorHint="#000000"ListView. 不知道我哪里出错了。我该如何解决这个问题?请帮忙。

谢谢!

4

2 回答 2

2

我认为您正在使用自定义布局来查看列表项。

所以现在发生的事情是,当您使用自定义布局时,它将使布局膨胀,并将再次用于下一个项目。

自定义适配器的 getview() 中的检查条件与此类似。

if(type.equalsIgnoreCase("1"))
{
    //received sms  
    msg.setBackgroundColor(Color.parseColor("#D5F7C3"));
    msgdt.setBackgroundColor(Color.parseColor("#BDF8C7"));
    //Set colors for Recieved SMS.

 }
else if(type.equalsIgnoreCase("2"))
{
   //sent sms
    msg.setBackgroundColor(Color.parseColor("#D5F7C3"));
    msgdt.setBackgroundColor(Color.parseColor("#BDF8C7"));

   //Set Colors for Sent SMS
 }

它会为你工作。

(它只是代码逻辑表示,因此需要您设置检查标准。)

希望能帮助到你!!

于 2013-10-07T11:25:35.150 回答
0

您必须根据为列表项分配颜色来维护每个列表视图项的状态。

更新-

对于列表中的复选框,我也发生了同样的问题。它会自动更改。

  public class ListAdapter extends BaseAdapter{

private List<String> mName;
private List<Drawable> mIcon;
private Context mContext;
private LayoutInflater mInflater;
private DataHelper mDataHelper;
private List<String> DBappName;
boolean[] checkBoxState;
private ArrayList<Boolean> itemChecked = new ArrayList<Boolean>();


public ListAdapter(Context mContext, List<String> Name, List<Drawable> appIcon, ) {
    this.mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    this.mContext=mContext;
    this.mName=Name;
    this.mIcon=Icon;

    mDataHelper=new DataHelper(mContext);
    DBappName=new ArrayList<String>();
    DBappName=mDataHelper.selectName();

    /***Initialization***/

    for (int i = 0; i < this.getCount(); i++) {
        itemChecked.add(i, false); // initializes all items value with false
    }

    for (int i = 0; i < DBappName.size(); i++) {
        for(int j=0;j<mName.size();j++){
            if(DBappName.get(i).equals(mName.get(j))){
                itemChecked.add(j, true); 
            }
        }
    }
}

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

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

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

@Override
public View getView(final int position, View convertView, ViewGroup parent) {
    final ViewHolder mHolder;

    if (convertView == null) {
        convertView = mInflater.inflate(R.layout.list_menu, null);
        mHolder = new ViewHolder();

        mHolder.mText=(TextView) convertView.findViewById(R.id.Name);
        mHolder.mImage=(ImageView) convertView.findViewById(R.id.Icon);
        mHolder.mCheckBoxLock=(CheckBox) convertView.findViewById(R.id.mCheckbox);
        convertView.setTag(mHolder);

    } else {
        mHolder = (ViewHolder) convertView.getTag();
    }

    mHolder.mText.setText(mName.get(position));
    mHolder.mImage.setImageDrawable(mIcon.get(position));
    mHolder.mCheckBoxLock.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            if(((CheckBox)v).isChecked()){
                itemChecked.set(position, true);
                mDataHelper.insert(mName.get(position));
            }else{
                itemChecked.set(position, false);
                mDataHelper.delete(mName.get(position));
            }
        }
    });
    mHolder.mCheckBoxLock.setChecked(itemChecked.get(position)); // this will Check or Uncheck the
    return convertView;
}

private class ViewHolder {
    private TextView mText;
    private ImageView mImage;
    private CheckBox mCheckBoxLock;
}

}

于 2013-10-07T11:18:47.877 回答