我试图使用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),但它也不能工作。
当前回答
我不相信您可以通过编程方式设置样式。为了解决这个问题,你可以创建一个带有指定样式的模板布局xml文件,例如在res/layout中创建带有以下内容的tvtemplate.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is a template"
style="@style/my_style" />
然后膨胀这个实例化你的新TextView:
TextView myText = (TextView)getLayoutInflater().inflate(R.layout.tvtemplate, null);
其他回答
我不相信您可以通过编程方式设置样式。为了解决这个问题,你可以创建一个带有指定样式的模板布局xml文件,例如在res/layout中创建带有以下内容的tvtemplate.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is a template"
style="@style/my_style" />
然后膨胀这个实例化你的新TextView:
TextView myText = (TextView)getLayoutInflater().inflate(R.layout.tvtemplate, null);
不支持动态更改样式。您必须在创建视图之前通过XML设置样式。
我只使用EditText进行了测试,但您可以使用该方法
setBackgroundResource (int residual)
来应用XML文件中定义的样式。
因为这个方法属于视图,我相信它将适用于任何UI元素。
的问候。
参数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,以将我们的样式应用到视图。
你可以创建一个通用样式,并在多个文本视图上重复使用,如下图所示:
textView.setTextAppearance(this, R.style.MyTextStyle);
Edit:这引用Context对象。