0
getColor(int)
已棄用。getColor(int)已過時如何使用getColor(int,主題主題)
如何使用getColor(int, theme theme)
?
我用了一些教訓,我找不到我如何使用getColor(int, theme theme)
。
getColor(int)
已棄用。getColor(int)已過時如何使用getColor(int,主題主題)
如何使用getColor(int, theme theme)
?
我用了一些教訓,我找不到我如何使用getColor(int, theme theme)
。
使用的東西作爲
ResourcesCompat.getColor(getResources(), R.color.red, null)
(以API級別23的主題之前,將不會應用,因此它可能是null
。)
我會建議使用'context.getTheme()'而不是'null'或者你可能只是使用不推薦的方法。 –
你看着資源? https://developer.android.com/reference/android/content/res/Resources.html#getColor(int,android.content.res.Resources.Theme) –