单击时预览图像 - Android
我是一名 Android 开发新手。我使用了 Google 的 Android 开发者网站上提供的代码并开发了 图库小部件。
现在我想调整它。当前单击图像时,它会显示索引,而不是我想在图库下方的可用空间中显示预览。
根据我的理解,我需要在此处更改代码:
g.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView parent,
View v, int position, long id) {
Toast.makeText(HelloGallery.this, "" + position,
Toast.LENGTH_SHORT).show();
我想使用一些可以显示预览的功能,而不是 Toast。有人可以帮我吗?
提前致谢。
I'm a novice Android developer. I used the code given at Google's Android developer site and developed the gallery widget.
Now I wanna tweak it. When the image is clicked currently it shows the index instead I wanna show the preview in the space available below the gallery.
As per my understanding I need to change the code somewhere here:
g.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView parent,
View v, int position, long id) {
Toast.makeText(HelloGallery.this, "" + position,
Toast.LENGTH_SHORT).show();
Instead of a Toast I wanna use some function that would bring up the preview. Can someone help me please.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
签出这个并查看图库和ImageView 视图示例
checkout this and look into Gallery and ImageView Views example