如何在LinearLayout中将径向渐变形状定位为背景?这是我现在拥有的:
形状:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:endColor="#e6e6e6"
android:gradientRadius="800"
android:startColor="#fafaf9"
android:type="radial"/>
</shape>
LinearLayout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/accueil_bg_gradient">
</LinearLayout>
我只想让我的渐变从屏幕的左上角开始,然后在右下角结束。
非常感谢!
答案 0 :(得分:45)
您可以使用渐变的“centerX”和“centerY”属性将径向渐变的中间移动到drawable的不同位置。它们是从0到1.0的浮点值,其中(centerX,centerY的值相应地)0,0是左上角,1,1是右下角。
默认值为0.5,0.5,它是可绘制/已分配空间的中间位置。 100px长(半径),黑白渐变的示例,其中间从左上角开始,将是:
<shape android:shape="rectangle">
<gradient
android:type="radial"
android:startColor="#ffffff"
android:endColor="#000000"
android:gradientRadius="100"
android:angle="270"
android:centerX="0"
android:centerY="0"/>
</shape>
答案 1 :(得分:-1)
将其设置为背景mybackground.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle" android:layout_width="wrap_content">
<stroke android:width="10dp" android:color="@color/darkBlue" />
<solid android:color="#00000000" />
<padding android:left="1dp" android:top="1dp" android:right="1dp"
android:bottom="1dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<gradient android:startColor="@color/grayBlue"
android:endColor="@color/lightBlue" android:angle="270"
android:centerColor="@color/lightBlue" />
<!-- border width and color -->
<stroke android:width="1dp" android:color="#FFDDDDDD" />
<padding android:left="10dp" android:top="8dp" android:right="10dp"
android:bottom="8dp" />
</shape>
</item>
</layer-list>