Android:文本图像按钮

发布于 2025-01-10 22:00:24 字数 70 浏览 0 评论 0原文

我尝试创建一个具有木质纹理的按钮。 我还想在上面写一些文字。 我不知道如何在图像按钮上添加文本,或者如何将图像添加到常规按钮。

I try to create a button with a wooden-like texture.
Also I want some text to be written on it.
I couldnt figure out how to add text on an image button or alternatively to add an image to a regular button.

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

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

发布评论

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

评论(1

原谅过去的我 2025-01-17 22:00:24

您可以创建两个视图(一个在另一个视图之上),如下所示:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageButton 
        ...
    />

    <TextView 
        ...
    />

</FrameLayout>

或者您可以创建一个带有背景图像的常规按钮(也许删除边框):

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/image"
    android:text="text"
/>

You can create two views (one above another) like this:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageButton 
        ...
    />

    <TextView 
        ...
    />

</FrameLayout>

Or you can create a regular button with an image in background (maybe remove border):

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/image"
    android:text="text"
/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文