我想比较imageview标签和imageview backgroundresource?

时间:2018-04-25 09:30:12

标签: android background-image android-imageview android-image

如何将imageview标记与android中的其他imageview backgroundresource进行比较

const data = [{
  key: '1',
  name: null,
  age: 32,
}, {
  key: '2',
  name: 'Jim Green',
  age: '32',
}, {
  key: '3',
  name: 'Joe Black',
  age: 32,
}];

console.log(data.sort((a,b)=>{
	a= a.name||'';
	b= b.name||'';
	return a.localeCompare(b)
}));

我们可以这样做吗?

1 个答案:

答案 0 :(得分:0)

这绝对可行。我的意思是,您可以在imageView中使用drawable作为标记。由于==只是检查它们是否是同一个实例,因此这种比较应该有效。

但是,使用Drawable作为标记非常低效。

另外,你的问题是什么?你想做什么?什么不按你想要的方式工作?

我觉得你的问题需要在回答之前告诉我们更多。