button实现图片显示
时间: 2024-05-04 15:22:05 浏览: 43
C++ 实现可以显示图片和文字的Button控件
4星 · 用户满意度95%
要实现在 button 上显示图片,可以使用 button 的 background 属性。可以使用以下步骤实现:
1. 在 res/drawable 文件夹下添加需要显示的图片,例如将图片命名为 my_image.png。
2. 在布局文件中使用 button,并设置其 background 属性为图片的资源文件:
```xml
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/my_image"
android:text="My Button" />
```
在这里,@drawable/my_image 将引用刚刚添加到 drawable 文件夹下的 my_image.png 文件。
3. 运行应用程序,你将看到在按钮上显示了图片。
注意,如果你想要在按钮上显示一个点击效果的图片,你应该使用 button 的 android:background 属性设置一个 selector。例如,你可以创建一个名为 my_button_selector.xml 的 selector 文件,类似于以下内容:
```xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/my_image_pressed" android:state_pressed="true"/>
<item android:drawable="@drawable/my_image_normal"/>
</selector>
```
然后,在布局文件中将 button 的 background 属性设置为该 selector:
```xml
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/my_button_selector"
android:text="My Button" />
```
这样,在按钮上将会显示 my_image_pressed.png 图片,当按钮被点击时,而 my_image_normal.png 图片将在按钮未被点击时显示。
阅读全文