Android shape显示卡片堆叠效果

右边堆叠效果:

资源文件:

```

        android:top="10dp"

        android:bottom="10dp"

        android:left="11dp"

        android:right="6dp">

       

           

           

           

        android:top="5dp"

        android:right="12dp">

       

           

           

           

```


效果如图

底部堆叠效果:

资源文件:

```

        android:left="11dp"

        android:right="11dp">

       

                android:bottomLeftRadius="4dp"

                android:bottomRightRadius="4dp" />

           

   

       

                android:bottomLeftRadius="4dp"

                android:bottomRightRadius="4dp" />

           

```


效果如图

左上右下,可操作属性 left/top/right/bottom来设置偏移量

你可能感兴趣的:(Android shape显示卡片堆叠效果)