答案 0 :(得分:0)
在Android中,不支持在创建视图后更改样式。也就是说,您无法动态地为视图设置样式。但是你可以做的是在xml中创建那个视图,只在xml中设置你想要的样式,当你想要显示一个视图时,你会膨胀它。 e.g。
<?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 myText = (TextView)getLayoutInflater().inflate(R.layout.tvtemplate, null);