我们如何获得活动的主题?

Fra*_*ank 10 android themes android-activity

我试图检测用于活动的主题,但到目前为止我只能找到整个应用程序的主题?有没有办法做到这一点?

and*_*yue 11

只需在您的活动中调用getTheme()方法即可.例如.

public class MainActivity extends PreferenceActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Theme theme = this.getTheme();
    }
}
Run Code Online (Sandbox Code Playgroud)


urS*_*Sus 7

我的第一个想法是ContextThemeWrapper.getTheme(),因为Activity扩展ContextThemeWrapper