我正在使用Glide来显示图像并且工作正常。现在,当用户点击任何图像时,我需要通过显示刻度线或在其上添加半透明颜色来高亮显示图像。
gallery.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {
if (null != images && !images.isEmpty()) {
}
}
});
答案 0 :(得分:0)
在适配器中使用以下xml:
def differentiate_element(i, p2, c):
p2element = p2[i]
return T.grad(c, p2element, disconnected_inputs='ignore')
h2, h2_updates = theano.scan(differentiate_element,
sequences=T.arange(p2.shape[0]), non_sequences=[p2, cost])
onItemClick() 获取ImageView,其ID为&#34; check_image &#34;并使其可见。
答案 1 :(得分:0)
使用https://github.com/wasabeef/glide-transformations
Glide.with(context)
.load(R.drawable.check)
.apply(bitmapTransform(BlurTransformation(25)))
.into(holder.image)