先在 res/drawable 下面 新建一个 渐变配置的 bg.xml , 其中 angle 表示角度
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:startColor="#FFF" android:centerColor="#FFFFFFFF" android:endColor="#000" android:angle="270" /> </shape>
然后在 layout 里面 加载 这个 渐变背景
<Button android:id="@+id/addSensor" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="@string/addSensorText" android:layout_weight="9" android:background="@drawable/bg" />