2011-03-06 11 views

答えて

2

描画可能なxmlファイルを作成してグラデーションの背景を持つ図形を作成します。

textview_background.xml:あなたの描画可能ディレクトリに保存

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="rectangle"> 

<gradient 
    android:startColor="#333" 
    android:centerColor="#000" 
    android:endColor="#676" 
    android:angle="270"/> 

<stroke 
    android:width="2dp" 
    android:color="#80808080"/> 



</shape> 

し、使用するものの背景のためにあなたのレイアウトに

android:background="@drawable/textview_background" 

と呼びます。テキストビュー、レイアウト、ボタン...

これは、私が思うものに近いものを提供するはずです。

グラデーションで使用される色は3重16進で、普通の16進を使用できると思います。

関連する問題