我使用以下样式设置应用程序主题
<style name="Background1" parent="@android:style/Theme.NoTitleBar.Fullscreen">
<item name="android:windowBackground">@drawable/bigl_2</item>
<item name="android:windowNoTitle">true</item>
</style>
使用这种方法:
setTheme(R.style.background1);
这里我的要求是我想用位图图像更改主题,我该如何在运行时做到这一点?
谢谢