【发布时间】:2015-09-09 01:55:30
【问题描述】:
大家好,我是安卓新手。我正在开发聊天应用程序,现在我遇到了自定义适配器的问题。它与文本聊天完美配合,但是当我在列表视图中加载图像时,它会出现问题。问题是,当我滚动聊天 2-3 次时,图像覆盖为文本。我已经用日志检查了我的所有代码,它只显示特定位置的一次图像实现,但在列表视图中它随机显示图像。我尝试了更多谷歌和相关问题,但没有任何帮助。
当我加载第一次聊天时在这里..它的 show
当我滚动时,有时它会在每次文字聊天时显示图像。
谁能帮帮我。plz。谢谢。
这是我的适配器:
public class ChatMainAdapter extends BaseAdapter {
private static final int TYPE_ITEM_ME = 0;
private static final int TYPE_ITEM_OTHER = 1;
private Context context;
private ArrayList < ChatMessageLocalDBModel > arrayList;
private static String currentUserObjectId;
private Bitmap myBimap, UserBitmap;
public ChatMainAdapter(Context context, ArrayList < ChatMessageLocalDBModel > arrayList, String currentUserObjectId, Bitmap userBitmap, Bitmap myBimap) {
this.context = context;
this.arrayList = arrayList;
this.currentUserObjectId = currentUserObjectId;
this.UserBitmap = userBitmap;
this.myBimap = myBimap;
}
@Override
public int getCount() {
return arrayList.size();
}
@Override
public Object getItem(int position) {
return position;
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public int getItemViewType(int position) {
String isMe = arrayList.get(position).getFrom();
return isMe.equalsIgnoreCase(currentUserObjectId) ? TYPE_ITEM_ME : TYPE_ITEM_OTHER;
}
@Override
public int getViewTypeCount() {
return 2;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
ViewHolder holder = null;
final int type;
type = getItemViewType(position);
if (convertView == null) {
holder = new ViewHolder();
switch (type) {
case TYPE_ITEM_ME:
{
convertView = LayoutInflater.from(context).inflate(
R.layout.chat_listview_item_me, null);
holder.imgViewUserPic = (ImageView) convertView.findViewById(R.id.chat_item_ivProfileMe);
holder.body = (TextView) convertView.findViewById(R.id.chat_item_tv_me_message);
holder.time = (TextView) convertView.findViewById(R.id.chat_item_tv_me_time);
holder.llyPic = (LinearLayout) convertView.findViewById(R.id.chat_lly_image);
holder.llyPic.setBackgroundResource(0);
holder.body.setTextIsSelectable(true);
}
break;
case TYPE_ITEM_OTHER:
{
convertView = LayoutInflater.from(context).inflate(
R.layout.chat_listview_item_other, null);
holder.imgViewUserPic = (ImageView) convertView.findViewById(R.id.chat_item_ivProfileOther);
holder.body = (TextView) convertView.findViewById(R.id.chat_item_tv_other_message);
holder.time = (TextView) convertView.findViewById(R.id.chat_item_tv_other_time);
holder.body.setTextIsSelectable(true);
}
break;
}
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
Log.i("NPath", "" + "Pos:" + position + " :- " + arrayList.get(position).getPath());
if (arrayList.get(position).getPath().equalsIgnoreCase("NO IMAGE")) {
holder.body.setText(arrayList.get(position).getMessage());
holder.time.setText(arrayList.get(position).getTime());
Log.i("NPath", "pos:" + position + "" + "is text and is : " + arrayList.get(position).getMessage() + "" + type);
} else {
Log.i("NPath", "pos:" + position + "" + "is image:" + type);
holder.body.setVisibility(View.GONE);
holder.time.setVisibility(View.GONE);
File path = new File("" + arrayList.get(position).getPath());
if (path.exists()) {
Bitmap mBitmap = BitmapFactory.decodeFile(arrayList.get(position).getPath());
final BitmapDrawable background = new BitmapDrawable(mBitmap);
holder.llyPic.setVisibility(View.VISIBLE);
holder.llyPic.setBackgroundDrawable(background);
} else {
convertView.setVisibility(View.GONE);
Log.e("NFILENOEXICST", "No file exist");
}
}
if (type == TYPE_ITEM_ME) {
holder.imgViewUserPic.setImageBitmap(myBimap);
} else {
holder.imgViewUserPic.setImageBitmap(UserBitmap);
}
final ViewHolder finalHolder = holder;
holder.body.setOnLongClickListener(new View.OnLongClickListener() {@Override
public boolean onLongClick(View v) {
ClipboardManager cm = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
cm.setText(finalHolder.body.getText());
Toast.makeText(context, "Copied to clipboard", Toast.LENGTH_SHORT).show();
return false;
}
});
return convertView;
}
final static class ViewHolder {
public ImageView imgViewUserPic;
public TextView body;
public TextView time;
public LinearLayout llyPic;
}
}
【问题讨论】:
-
无用的问题..邮政编码
-
您的适配器出现问题,请同时发布代码
-
@WillTorres 我已经更新了我的代码
-
@WillTorres 你想要哪种布局..???我的意思是主布局或 itemview 布局..??
-
提供的代码中使用的所有相关布局?你不知道如何正确提问吗?
标签: android listview android-listview chat custom-adapter