【Android,Kotlin】'getColor(Int): Int' is deprecated. Deprecated in Javaの対応方法
getColor(int)はDeprecated getColor(int)はDeprecatedになった。
以下のようなコードを書くと'getColor(Int): Int' is deprecated. Deprecated in Javaとワーニングが表示される。
context.resources.getColor(R.color.foo) 代わりにgetColor(int, Resources.Theme)を使う 1引数のgetColor(int)の代わりに2引数のgetColor(int, Resources.Theme)を使う。