我试图使用TextView构造函数的风格像这样:
TextView myText = new TextView(MyActivity.this, null, R.style.my_style);
但是,当我这样做时,文本视图似乎没有采用该样式(我通过在静态对象上设置该样式来验证该样式)。
我还尝试使用myText.setTextAppearance(MyActivity. settextappearance)。this, R.style.my_style),但它也不能工作。
我试图使用TextView构造函数的风格像这样:
TextView myText = new TextView(MyActivity.this, null, R.style.my_style);
但是,当我这样做时,文本视图似乎没有采用该样式(我通过在静态对象上设置该样式来验证该样式)。
我还尝试使用myText.setTextAppearance(MyActivity. settextappearance)。this, R.style.my_style),但它也不能工作。
当前回答
我们可以使用TextViewCompact。setTextAppearance (textView R.style.xyz)。
Android文档供参考。
其他回答
您可以在构造函数中设置样式(但样式不能动态更改/设置)。
视图(Context, AttributeSet, int) (int是当前主题中的属性,包含对样式的引用)
罗曼·盖伊的回答
参考
你可以使用kotlin扩展函数
fun TextView.setStyle(@StyleRes resId: Int) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
setTextAppearance(resId)
} else {
setTextAppearance(context, resId)
}
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
textView.setTextAppearance(R.style.yourStyle)
这个公认的答案对我来说是一个很好的解决方案。唯一要添加的是关于inflation()方法。
在接受的答案中,所有android:layout_*参数将不会被应用。
原因是没有办法调整它,因为null是作为ViewGroup父项传递的。
你可以这样使用它:
视图视图= inflater. inflation (r.p ayler .layout。View, parent, false);
父类是ViewGroup,从这里你可以调整android:layout_*。
在这种情况下,将设置所有相关属性。
希望对别人有用。
参数int defStyleAttr不指定样式。Android文档:
类的当前主题中的属性 样式资源的引用,该样式资源为 视图。可以是0表示不查找默认值。
要在View构造函数中设置样式,我们有两个可能的解决方案:
使用ContextThemeWrapper: ContextThemeWrapper wrappedContext = new ContextThemeWrapper(yourContext, R.style.your_style); TextView TextView = new TextView(wrappedContext, null, 0); 有四个参数的构造函数(从LOLLIPOP开始可用): TextView TextView = new TextView(yourContext, null, 0, r.s yle.your_style);
这两种解决方案的关键是- defStyleAttr参数应该为0,以将我们的样式应用到视图。