我正在尝试检测用于活动的主题,但到目前为止,我只能在整个应用程序中找到它?有办法吗?

最佳答案

只需在活动中调用gettheme()方法。例如。

public class MainActivity extends PreferenceActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Theme theme = this.getTheme();
    }
}

07-27 18:51