我正在尝试在button
点击时更改我的应用程序的主题。我在onClick()
。
Activity
函数
我的代码:
public class Screen2 extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.secondscreen);
}
public void theme(View view){
getApplication().setTheme(android.R.style.Theme_Holo);
}
它不起作用。你能帮我改变我申请的主题吗?
先谢谢。