u010089114 2016-01-02 08:06 采纳率: 46.7%
浏览 1520
已采纳

安卓开发为何我点中EditText会调用BaseAdapter的getView方法

public class MainActivity extends Activity {
List list=new ArrayList();
String date;
ListView lv=null;
MessageAdapter ma=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
lv=(ListView) findViewById(R.id.listView1);
list.add(new Msg(Type.Receive,"主人你好"));
ma=new MessageAdapter(this,list);
lv.setAdapter(ma);
}
}

MessageAdapter类:
public class MessageAdapter extends BaseAdapter{
private LayoutInflater mInflater;
private List<Msg> mDatas;

public MessageAdapter(Context context, List<Msg> datas)
{
    mInflater = LayoutInflater.from(context);
    mDatas = datas;
}

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

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

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

/**
 * 接受到消息为1,发送消息为0
 */
@Override
public int getItemViewType(int position)
{
    Msg msg = mDatas.get(position);
    return msg.getType() == Type.Receive ? 1 : 0;
}

@Override
public int getViewTypeCount()
{
    return 2;
}

@Override
public View getView(int position, View convertView, ViewGroup parent)
{
    ViewHolder vh=null; 

    Msg chatMessage = mDatas.get(position);

    if(convertView==null){

        vh=new ViewHolder();
        if(chatMessage.getType()==Type.Receive){
             convertView=mInflater.inflate(R.layout.left,parent, false);
            vh.createDate=(TextView) convertView.findViewById(R.id.receiveDate);
            vh.content=(TextView) convertView.findViewById(R.id.receiveContent);

            convertView.setTag(vh);
        }else{

            convertView=mInflater.inflate(R.layout.right,null);
            vh.createDate=(TextView) convertView.findViewById(R.id.sendDate);
            vh.content=(TextView) convertView.findViewById(R.id.sendContent);
            convertView.setTag(vh);

        }       
    }else{

        vh=(ViewHolder) convertView.getTag();   
    }

    vh.createDate.setText(chatMessage.getContent());
    vh.content.setText(chatMessage.getDateStr());
        return convertView;
}

private class ViewHolder
{
    public TextView createDate;
    public TextView content;
}

}
Msg类:
public class Msg {
public String content,name,DateStr;
private Date date;
public Type type;
enum Type{
send,Receive;
}
public Msg(){

}
public Msg(Type type,String content){
super();
this.type=type;
this.content=content;
setDate(new Date());
}
public String getContent(){
return content;
}
public Type getType(){
return type;
}
public String getDateStr(){
return DateStr;
}
public void setDate(Date date){

this.date=date;
DateFormat df=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
DateStr=df.format(date);

}
public void setType(Type t){
this.type=t;
}
public Date getDate(){
return date;
}
public void setMsg(String msg){
content=msg;
}
}
点击editText栏的时候就会调用getView方法,我找了好三四天了始终没有找到问题的根结,现在把所有java代码都贴上来了求帮我看看是哪里出的问题

  • 写回答

1条回答 默认 最新

  • efan_ 2016-01-03 08:33
    关注

    哪里有个edittext...........,执行getView肯定是因为listview发生变化 比如移动了或者什么的

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?