gpt4 book ai didi

android - 如何获得android渐变中心光效果?

转载 作者:IT老高 更新时间:2023-10-28 21:38:58 28 4
gpt4 key购买 nike

我想要类似下面的图片

enter image description here

我尝试使用可绘制形状

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
android:angle="360"
android:centerX="50%"
android:centerY="50%"

android:gradientRadius="50%"
android:endColor="#000000"
android:centerColor="#FFFFFF"
android:startColor="#000000" >
</gradient>
</shape>

最佳答案

在您的可绘制文件夹中创建一个新的 Android xml 文件(比如 GreyRadial.xml)文件

在你的 xml 文件中

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<gradient
android:centerColor="#c1c1c1"
android:endColor="#4f4f4f"
android:gradientRadius="400"
android:startColor="#c1c1c1"
android:type="radial" >
</gradient>

</shape>

在你的布局背景中使用这个xml

android:background="@drawable/GreyRadial"

关于android - 如何获得android渐变中心光效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19542046/

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