1
下のレイアウトにグラデーションを入れたいのですが、上のレイアウトでのみ動作するようです。ここAndroid:画面下の相対配置のグラデーション
メインレイアウト(のtest.xml)のコードである:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#FFF">
<RelativeLayout android:id="@+id/relativeLayout1" android:layout_alignParentTop="true" android:layout_height="60sp" android:layout_width="fill_parent" android:background="@drawable/tool_bar_gradient"></RelativeLayout>
<RelativeLayout android:id="@+id/relativeLayout2" android:layout_alignParentBottom="true" android:layout_height="60sp" android:layout_width="fill_parent" android:background="@drawable/tool_bar_gradient"></RelativeLayout>
</RelativeLayout>
勾配(tool_bar_gradient)のコード:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient xmlns:android="http://schemas.android.com/apk/res/android" android:startColor="#257aa1" android:endColor="#6fb7d9" android:angle="90" android:bottom="450sp">
</gradient>
</shape>
結果:勾配に有効ですトップバーがありますが、ボトムバーにはありません。
何が問題なのですか?
PS:対象はAndroid 2.1-update1またはAndroid 2.2です。
を取得できませんでした。この
screen i am getting
される何かを取得しています.... がありますバグはIDEだから! 時間をいただきありがとうございます;) –