我有跟随drawable set作为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">
希望这个帮助.