更新ListView中的图像的alpha

时间:2013-04-07 10:04:37

标签: android

我正在使用带有BaseAdapter的ListView。 ListView中的每一行都有一个LinealLayout和2个ImageView。

我的问题是我需要从我的Activity中更改图像的alpha值,但我无法做到。

我试过这样做:

View v = listAdapter.getView(2, null, null);
ImageView img = (ImageView)v.findViewById(R.id.secondImage);
img.setAlpha(1000);
listAdapter.notifyDataSetChanged();

但在那之后,我看不到新的变化。另一种我认为使用 listView.getChildAt()的方法,但它总是返回一个Null对象。什么是正确的方法?

由于

0 个答案:

没有答案