android – GradientDrawable以编程方式更改角度

前端之家收集整理的这篇文章主要介绍了android – GradientDrawable以编程方式更改角度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有跟随GradientDrawable的xml.如何以编程方式更改角度?
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient android:type="linear" 
       android:angle="45" 
       android:startColor="#FF0000" 
       android:endColor="#00FF00" />
</shape>

解决方法

GradientDrawable有一个名为:.setOrientation(GradientDrawable.Orientation orientation)的方法,您可以使用此方法更改渐变的方向.您需要将XML扩展为GradientDrawable.
原文链接:https://www.f2er.com/android/315288.html

猜你在找的Android相关文章