Android/色
提供: 初心者エンジニアの簡易メモ
色設定xml
- res/values/colors.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="backcolor">#000000</color> <color name="whitecolor">#ffffff</color> </resources>
レイアウトで使う場合
<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/hello" android:textColor="@color/whitecolor" />
定義サンプル
http://donatello.jp/blog/2012/03/22/androidcolor/
定義済み色使用
@android:color/white @android:color/black
プログラムで使う
TextView tv = new TextView(getApplicationContext()); tv.setTextColor(getApplicationContext().getResources().getColor(R.color.hoge));
色公式ページ
http://developer.android.com/reference/android/graphics/Color.html