how to get Theme attributes values

后端 未结 3 489
梦谈多话
梦谈多话 2020-12-29 02:54

Is it possible to obtain styled attributes values from particular Theme without setting the theme up to application/activity? (I mean before invoking context.setTheme(

3条回答
  •  臣服心动
    2020-12-29 03:14

    JavaDoc:

    method TypedArray android.content.res.Resources.Theme.obtainStyledAttributes(int[] attrs)

    Return a TypedArray holding the values defined by Theme which are listed in attrs.

    Be sure to call TypedArray.recycle() when you are done with the array.

提交回复
热议问题