<style name="AppTheme" parent="@android:style/Theme.Holo.Light.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
<style name="nightAppTheme" parent="@android:style/Theme.Holo.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
在AndroidMainifest中为一个Activity配置的theme是AppTheme,现在希望动态将这个Activity的Theme改为nightAppTheme,也就是从亮色改到暗色,使用setTheme(R.style.nightAppTheme)方法无效,请问怎么才可以实现上述需求或者实现上述需求的其他方法?