如何在图片库中显示自定义名称(Toast 消息)

发布于 2024-10-21 19:31:22 字数 78 浏览 2 评论 0原文

我正在寻找一种在普通 Android 画廊中显示 toast 消息的方法。但是...我想为选择图像时显示的每个图像设置自定义名称。我该怎么做?

I am looking for a way to show a toast messages in your average android gallery. BUT...I want to set custom names for each image that displays when the image is selected. How can i do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

も星光 2024-10-28 19:31:22

向您的图库添加一个侦听器

setOnItemSelectedListener(new OnItemSelectedListener() {

您可以在选择某个项目时

@Override
            public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {

,该方法将调用 OnItemSelectedListener 类中的一个方法,该位置与图库中选定的项目相关,您可以使用它来显示有关该项目的任何信息使用 Toast 消息。希望这有帮助。

You could add a listener to your gallery

setOnItemSelectedListener(new OnItemSelectedListener() {

when a item is selected this method

@Override
            public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {

which is a method from the OnItemSelectedListener class is going to get called, the position relates to the selected item in your gallery that you could use to display any information about that item using a Toast message. Hope this helps.

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