gpt4 book ai didi

Android:盒子阴影和边框半径布局

转载 作者:行者123 更新时间:2023-12-03 13:46:24 28 4
gpt4 key购买 nike

我要box shadowradius如下图,但在 android box shadow不行

enter image description here

如何使用 xml对于这个问题?

最佳答案

对于角落,您必须使用 drawable如下所示:

<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>

<!-- view border color and width -->
<stroke
android:width="1dip"
android:color="#a4a2a2" >
</stroke>

<corners android:radius="180px">

</corners>
<!-- Here is the corner radius -->

关于影子

我想你的意思是 android:elevation="8dp"
<Yourbox
android:width="match_parent"
android:height="match_parent"
....
android:elevation="8dp"
android:layout_gravity="center"
..
/>

关于Android:盒子阴影和边框半径布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42467989/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com