安卓径向渐变



我有以下可绘制对象设置为线性布局背景:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
   <item>
      <bitmap
         android:tileMode="repeat"
         android:dither="true"
         android:src="@drawable/bg"/>
   </item>

   <item>
      <shape android:shape="rectangle">
         <gradient
            android:startColor="#ffff0000"
            android:endColor="#ff00ff00"
            android:centerX="50%"
            android:centerY="50%"
            android:gradientRadius="50%"
            android:type="radial"/>
      </shape>
   </item>
</layer-list>

根据文档,梯度半径可以设置为窗口/父大小的百分比。不幸...它不起作用。半径为 0。我做错了什么?或者安卓有什么问题?

我需要径向渐变来填充整个屏幕。解决方法是什么?

有点晚了,但根据文档,您必须设置"50%p",而不是"50%"。(注意"p"表示"父级")

如果我很好地理解你需要什么,你必须制作由可绘制引用的布局

( "match_parent" ) ,

如下:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" 
     android:background="@drawable/"your drawable xml name">

希望这个帮助.

相关内容

  • 没有找到相关文章

最新更新