我正在使用下面的代码来圆角RelativeLayout。我把它保存mybackground.xml
在drawable
文件夹中。
圆角效果很好,但问题是我还想添加一个透明图像作为我的 RelativeLayout 的背景。我怎样才能实现这两件事?如何同时为 RelativeLayout 使用图像和可绘制 xml(用于圆角)...
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<corners android:bottomRightRadius="30dp"
android:bottomLeftRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp" />
</shape>