我想在父[RelativeLayout]和子[RelativeLayout]之间添加颜色,如下图所示, 我添加黑色半透明颜色,使中心区域透明,透明区域的宽度和高度可以改变,我不知道如何创建这样的视图,有简单的方法吗?
[示例图片]
[期待结果]
[示例xml]
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true">
</RelativeLayout>
</RelativeLayout>