2013年8月22日 星期四

設定顏色(color)和顏色的透明度

在XML裡設定
ex:
<EditText android:layout_width="match_parent"
    android:layout_height="40dp"
    android:inputType="textEmailAddress"
    android:layout_marginTop="10dp"
    android:textColor="#000000"/>


如果有4個byte,第一個byte設定透明度
ex:
#00000000


從Java設定

ex:

 seperatorView.setBackgroundColor(Color.argb(51, 255, 255, 255));
 wordTextView2.setTextColor(Color.rgb(0,0,0));

ex:
calorieView.getBackground().setAlpha(127);






沒有留言:

張貼留言