I want setTheme
to an activity at runtime, I have search some solutions by google.
someone said call setTheme
before onCreate and setContentView can works, the code section like
public void onCreate(Bundle savedInstanceState) {
setTheme(android.R.style.Theme_Translucent_NoTitleBar);
super.onCreate(savedInstanceState);
...
setContentView(...)
}
but it not works, I want to know, is there another solution can setTheme to activity?