我正在尝试将形状颜色设置为图像,但没有这样做。也许有人可以告诉我如何以正确的方式做到这一点?我使用这个形状作为按钮的背景。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
<stroke
android:width="0.5dp"
android:color="#ff0000" />
<solid android:color= "@drawable/tableback1" />
</shape>