在Android中的图像按钮上设置前景图像

发布于 2024-12-03 04:31:55 字数 81 浏览 0 评论 0原文

我正在尝试在图像按钮上设置前景图像。这样,按钮灰色背景可见,图像出现在前景中。

如果有任何想法,我将不胜感激。

谢谢

I am trying to set a foreground image on my image button. This way, the button gray background is visible with the image appearing in the foreground.

I would appreciate any thoughts, please.

Thanks

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

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

发布评论

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

评论(2

溇涏 2024-12-10 04:31:55

如果您想在设置前景图像时删除灰色背景,请设置一个空的背景图像。
或者只需将背景图像设置为按钮,而不是设置前景图像。
我希望这会对您有所帮助。

使用代码编辑

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:src="@drawable/icon"/>

当您使用 android:src 属性仅设置前景时

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:background="@drawable/icon"/>

当您使用 android:background 属性仅设置背景时

If you want to remove that gray background while you set foreground image then set an empty Background image.
or Simply instead of setting foreground image set only background image to button.
I hope this will help you.

Edited with code

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:src="@drawable/icon"/>

When you use set only foreground by using android:src propery

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:background="@drawable/icon"/>

When you set only Background using android:background property

咋地 2024-12-10 04:31:55

仅使用按钮而不是图像按钮。并在 xml 中使用 android:background="@drawable/yourdrawablewhichyouwanttoshow" 希望它有帮助!

Only use the button instead imagebutton. And in xml use the android:background="@drawable/yourdrawablewhichyouwanttoshow" hope it helps!

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