在Android中,如何读取当前按钮的背景图片?

发布于 2024-12-09 03:01:49 字数 451 浏览 0 评论 0原文

我正在尝试找到一种方法来读取按钮的背景图像名称(按钮状态 xml 文件中的每个按钮都有三种不同的可能图像),以便每次用户单击按钮时,我都可以将该图像名称值放入 if语句来查看我是否需要将按钮图像更改为下一个图像(3个图像中的)

我尝试了这个

button1.getBackground()

然后我使用toast来显示使用这个的价值:

Toast.makeText(TreActivity.this, String.valueOf(button1.getBackground()) , Toast.LENGTH_SHORT).show();

我本以为它会给我 3 个按钮状态图像之一,但它却给了我这个: android.graphics.drawable.BitmapDrawable@44f01d58

那么如何获取当前分配给按钮的当前背景可绘制图像?

预先感谢大家的帮助!

I am trying to find a way to read a button’s background image name (I have three different possible images for each button in the button state xml file) so that every time a user click on the button I can put that image name value in if statement to see if I need to change the button image to the next image or not (of the 3 images)

I tried this

button1.getBackground()

Then I used the toast to show the valie of that using this:

Toast.makeText(TreActivity.this, String.valueOf(button1.getBackground()) , Toast.LENGTH_SHORT).show();

I was thinking it will give me one of my 3 button state images but instead it gave me this:
android.graphics.drawable.BitmapDrawable@44f01d58

So how can I get the current background drawable image currently assigned to the button?

Thanks in advance for everyone's help!

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

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

发布评论

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

评论(1

野生奥特曼 2024-12-16 03:01:49

我认为这对你有用
我的应用程序我使用了从图像视图获取图像。

img_View11.setOnClickListener(new View.OnClickListener()  {            
    public void onClick(View v)  {           
        ImageView iv = (ImageView)v;                 
        Drawable d = iv.getDrawable();                                   
        }                
       }
    }); 

i think this will working for u
my my app i used this getting image from image view.

img_View11.setOnClickListener(new View.OnClickListener()  {            
    public void onClick(View v)  {           
        ImageView iv = (ImageView)v;                 
        Drawable d = iv.getDrawable();                                   
        }                
       }
    }); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文