如何在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>
我只是希望能有我的梯度從該屏幕的左上角開始和結束在右下角。
非常感謝!
如果要更改漸變的角度嘗試使用'安卓:angle'在< [gradient](http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape)>元素。 – m039
感謝您的回答,但它是一個徑向漸變 – alxscms