LinearLayoutにグラデーション背景を適用できません。
これは私が読んだことから比較的簡単なはずですが、うまくいかないようです。参考のために、私は2.1-update1で開発しています。
header_bg.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:startColor="#FFFF0000"
android:endColor="#FF00FF00"
android:type="linear"/>
</shape>
main_header.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:orientation="horizontal"
android:background="@drawable/header_bg">
</LinearLayout>
@ drawable / header_bgを色に変更すると、たとえば#FF0000で問題なく動作します。ここに明らかな何かが欠けていますか?