プログラミング上で、androidのリソースにアクセスする方法です。
androidの標準カラーリソースであるwhiteの値を参照したいとします。
xml上から参照する場合
1 2 3 4 5 |
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@android:color/white" /> |
次にプログラム上で参照する場合です。
1 2 |
TextView textView = new TextView(this); textView.setTextColor(ContextCompat.getColor(this,android.R.color.white)); |
code
more code
~~~~