我将以下drawable设置为LinearLayout背景:

<?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>

根据docs,gradientRadius可以设置为窗口/父级大小的百分比。不幸的是,它不起作用。半径为0。我在做什么错?还是Android有什么问题?

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

最佳答案

如果我很了解您的需求,则必须使drawable引用的布局

(“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">

希望对您有所帮助。

10-08 17:26