单击时预览图像 - Android

发布于 2024-10-13 03:13:10 字数 589 浏览 2 评论 0原文

我是一名 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月依秋水 2024-10-20 03:13:10

签出这个并查看图库和ImageView 视图示例

checkout this and look into Gallery and ImageView Views example

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文