是否有任何方法可以在按钮中显示背景图像,并且此按钮的角是圆角的
因为根据我看到的所有示例,我们设置bakground图像的属性与我们可以设置xml文件以制作圆角的相同
然后可以在同一个按钮中对两个进行舍入,因为知道必须重复图像背景
这是我的圆角代码:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke android:width="3dip" android:color="#B1BCBE" />
<corners android:radius="10dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
以下是重复背景图片的代码:
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/backtemplate"
android:tileMode="repeat"
android:dither="true" />
我想将这两个文件整理成一个按钮,以获得带有重复背景图像的圆角按钮