使用自定义适配器更改ListView中特定行中的ImageView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用自定义适配器更改ListView中特定行中的ImageView相关的知识,希望对你有一定的参考价值。
我正在尝试更改ImageView
中使用自定义适配器制作的特定行中的ListView
。
每当我改变一行时,其他行也会受到影响。我很感激你的帮助。谢谢。这是我在MainActivity类中的代码
adapter= new CustomAdapter(dataModels,getApplicationContext());
listView.setAdapter(adapter);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Toast.makeText(MainActivity.this, position+" ",
Toast.LENGTH_LONG).show();
DataModel dataModel= dataModels.get(position);
Snackbar.make(view, dataModel.getName()+"
"+dataModel.getType(), Snackbar.LENGTH_LONG)
.setAction(" ", null).show();
ImageView imgv = (ImageView)view.findViewById(R.id.item_info);
imgv.setImageResource(R.drawable.fav);
adapter.notifyDataSetChanged();
i= Integer.parseInt(dataModel.getVersion_number());
rotate();
StartNewSong();
}
});
这里是自定义适配器中的代码
public View getView(int position, View convertView, ViewGroup parent) {
// Get the data item for this position
DataModel dataModel = getItem(position);
// Check if an existing view is being reused, otherwise inflate the view
final View result;
if (convertView == null) {
viewHolder = new ViewHolder();
LayoutInflater inflater = LayoutInflater.from(getContext());
convertView = inflater.inflate(R.layout.row_item, parent, false);
viewHolder.txtName = (TextView) convertView.findViewById(R.id.name);
viewHolder.txtType = (TextView) convertView.findViewById(R.id.type);
viewHolder.info = (ImageView) convertView.findViewById(R.id.item_info);
result=convertView;
convertView.setTag(viewHolder);
} else {
viewHolder = (ViewHolder) convertView.getTag();
result=convertView;
}
Animation animation = AnimationUtils.loadAnimation(mContext, (position > lastPosition) ? R.anim.up_from_bottom : R.anim.down_from_top);
result.startAnimation(animation);
lastPosition = position;
viewHolder.txtName.setText(dataModel.getName());
viewHolder.txtType.setText(dataModel.getType());
check = dataModel.getImageApp();
if (check == "false") {
} else if (check !="false") {
Picasso.get()
.load(check)
.placeholder(R.mipmap.ic_launcher)
.error(R.mipmap.ic_launcher)
.into(viewHolder.info);
}
viewHolder.info.setOnClickListener(this);
viewHolder.info.setTag(position);
// Return the completed view to render on screen
return convertView;
}
这是一个问题,显示为gif problem as a gif
我的DataModel类
公共类DataModel {
String name;
String type;
String id;
String imageApp;
String url;
public DataModel(String name, String type, String id, String imageApp, String url) {
this.name=name;
this.type=type;
this.id=id;
this.imageApp=imageApp;
this.url=url;
}
public String getName() {
return name;
}
public String getType() {
return type;
}
public String getVersion_number() {
return id;
}
public String getImageApp() {
return imageApp;
}
public String getUrl() {
return url;
}
}
答案
在isSelected
类中创建一个名为DataModel
的布尔变量,并按如下方式更改构造函数。
public DataModel(String name, String type, String id, String imageApp, String url, boolean isSelected) {
this.name=name;
this.type=type;
this.id=id;
this.imageApp=imageApp;
this.url=url;
this.isSelected = isSelected;
}
这将用于确定是否选择了某个项目。为isSelected
创建getter和setter。当你创建DataModel
对象时,将isSelected
作为false
传递给你的构造函数。
在适配器中,检查isSelected
的值以设置相应的图像。
if (dataModel.isSelected) {
Picasso.get()
.load(your_selected_imageview)
.placeholder(R.mipmap.ic_launcher)
.error(R.mipmap.ic_launcher)
.into(viewHolder.info);
}
并且在listview的项目中,单击侦听器不会更改imageview
,而只需将相应isSelected
对象的DataModel
值设置为true。
DataModel dataModel = dataModels.get(position);
dataModel.setIsSelected(true);
adapter.notifyDataSetChanged();
以上是关于使用自定义适配器更改ListView中特定行中的ImageView的主要内容,如果未能解决你的问题,请参考以下文章
在listview中的addTextChangedListener中使用自定义列表适配器
如何在不使用自定义适配器的情况下从 ListView 获取特定的 TextView (View)?
在自定义适配器类中发送服务器请求后,如何更改 Listview 按钮名称?