我一直在努力使用 pre-lollipop API 获取样式属性。
用棒棒糖,我用
final TypedValue statusBarColor = new TypedValue();
getTheme().resolveAttribute(android.R.attr.colorPrimaryDark, statusBarColor, true);
STATUS_BAR_COLOR = ContextCompat.getColor(this, statusBarColor.resourceId);
这完美无缺,我在 API 版本 21 下没有找到类似的方法。(minAPI = 16)
我尝试使用getTheme().obtainStyledAttributes()
. 但是,我没有AttributeSet
提供该方法,因为我在活动中使用它。我做的事情是完全错误的,还是解决了低于 21 的 API 版本不支持的样式属性?