获取当前主题设置的属性

有时候需要动态的获取当前主题中设置的属性,例如文字颜色、背景等等,这个时候就可以利用obtainStyledAttributes方法获取,代码如下:

 TypedArray a = this.getTheme().obtainStyledAttributes(new int[]  {android.R.attr.colorPrimaryDark});
 int statusBarColor = a.getColor(0, Color.WHITE);
 a.recycle();
posted @ 2016-06-24 01:18  豌豆豆  阅读(75)  评论(0编辑  收藏  举报