如果我在 gridview 中有该图像的位置信息,如何替换该图像?
我正在使用带有图像适配器的 gridview 来渲染图像。
我想知道如果我有特定图像的位置信息,是否可以替换该图像?
为了。例如,我有一个可变的先前位置,其中存储先前选择的图像位置,假设它是 1(矩形图像)。现在我想用其他图像(方形图像)替换位置 1 处的图像。我该怎么做?
I am using gridview with image adapter to render images.
I want to know whether it is possible to replace a particular image if i have position information of that image?
For. e.g. i have a variable previous location in which i store the previous selected image position lets say its 1 (rectangle image). Now i want to replace the image at location 1 with some other image (square image). How can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 , getChildAt(位置) API
http://developer.android.com/reference/android/view /ViewGroup.html#getChildAt(int)
一旦获得对特定 childView 的引用,您就可以更改图像。
check , getChildAt(position) API
http://developer.android.com/reference/android/view/ViewGroup.html#getChildAt(int)
once you get the reference to the particular childView , you can change the image.