android 按钮里放图片和文字
时间: 2024-02-22 14:56:38 浏览: 104
Android 带图片的按钮源码.zip
在 Android 中,可以使用 Button 控件来显示图片和文字。可以使用以下两种方法之一:
1. 使用 android:drawableLeft 属性来设置左侧的图片,使用 android:text 属性来设置文本。
例如:
```
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/my_image"
android:text="My Button" />
```
2. 使用 android:drawableTop 属性来设置顶部的图片,使用 android:text 属性来设置文本。
例如:
```
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/my_image"
android:text="My Button" />
```
还可以使用其他属性来调整图片和文本之间的间距,对齐方式等。
阅读全文