是的,Android中的getColor方法可以读取主题颜色。可以通过在代码中使用ContextCompat.getColor方法并传入主题颜色的资源ID来获取主题颜色。例如:
int themeColor = ContextCompat.getColor(getContext(), R.attr.colorPrimary);
这样就可以获取到当前主题中定义的colorPrimary颜色。