android 创建按钮同时添加图片和文字在按钮上显示
时间: 2023-09-26 22:09:32 浏览: 438
Android实现自定义带文字和图片Button的方法
在 Android 中,您可以使用 ImageButton 或 Button 控件来创建一个同时包含图像和文本的按钮。
如果您想要创建一个 ImageButton,可以参考以下代码:
```xml
<ImageButton
android:id="@+id/myImageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/myIcon"
android:contentDescription="@string/myIconDescription" />
```
在上面的代码中,我们使用了 android:src 属性来设置按钮上的图像,并使用 android:contentDescription 属性来为图像添加描述。您可以将 @drawable/myIcon 替换为您自己的图像资源,并将 @string/myIconDescription 替换为您自己的描述文本。
如果您想要创建一个 Button,可以参考以下代码:
```xml
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/myIcon"
android:text="@string/myButtonText" />
```
在上面的代码中,我们使用了 android:drawableLeft 属性来设置按钮上的图像,并使用 android:text 属性来设置按钮上的文本。您可以将 @drawable/myIcon 替换为您自己的图像资源,并将 @string/myButtonText 替换为您自己的按钮文本。
请注意,您可以在任何类型的 Button 控件上使用 android:drawableLeft、android:drawableRight、android:drawableTop 或 android:drawableBottom 属性来添加图像。这些属性会将图像放置在文本的左侧、右侧、上方或下方。
阅读全文