滚动时发送和接收短信颜色变化的列表视图

时间:2013-10-07 11:14:01

标签: android listview android-listview

您好我正在开发一个Android短信应用,我希望在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。不知道我哪里错了。我该如何解决这个问题?请帮助。

谢谢!

2 个答案:

答案 0 :(得分: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
 }

它适合你。

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

希望它能帮助!!

答案 1 :(得分:0)

您必须根据为listitem分配颜色来维护每个listview项的状态。

<强>更新 -

同样的问题发生在我的list.it中的复选框是自动更改。

  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;
}

}