这是XML:

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/LightStyle"
    android:layout_width="fill_parent"
    android:layout_height="55dip"
    android:clickable="true"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" />

</RelativeLayout>

如何以编程方式设置样式属性?


当前回答

对于一个新的按钮/TextView:

Button mMyButton = new Button(new ContextThemeWrapper(this, R.style.button_disabled), null, 0);

对于已存在的实例:

mMyButton.setTextAppearance(this, R.style.button_enabled);

对于图像或布局:

Image mMyImage = new ImageView(new ContextThemeWrapper(context, R.style.article_image), null, 0);

其他回答

这是我的简单示例,关键是ContextThemeWrapper包装器,没有它,我的风格无法工作,并使用视图的三个参数构造函数。

ContextThemeWrapper themeContext = new ContextThemeWrapper(this, R.style.DefaultLabelStyle);
TextView tv = new TextView(themeContext, null, 0);
tv.setText("blah blah ...");
layout.addView(tv);

更新:在回答这个问题的时候(2012年中期,API级别14-15),以编程方式设置视图还不是一个选项(即使有一些重要的变通方法),而在最近的API发布之后,这已经成为可能。详见@Blundell的回答。

旧的回答:

您还不能通过编程方式设置视图的样式,但是您可能会发现这个线程很有用。

int buttonStyle = R.style.your_button_style;
Button button = new Button(new ContextThemeWrapper(context, buttonStyle), null, buttonStyle);

只有这个答案对我有用。参见https://stackoverflow.com/a/24438579/5093308

简单的方法是通过构造函数

RadioButton radioButton = new RadioButton(this,null,R.style.radiobutton_material_quiz);

这是一个相当老的问题,但解决方案,为我工作现在是使用构造函数defStyleRes的第4个参数-如果可用..视图…设置风格

以下工作为我的目的(kotlin):

val textView = TextView(context, null, 0, R.style.Headline1)