Back to project page SimpleReader.
The source code is released under:
Apache License
If you think the Android project SimpleReader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dreamteam.app.ui; /*from ww w . j a v a 2 s.c o m*/ import com.dreamteam.app.commons.SkinManager; import android.os.Bundle; import android.support.v4.app.FragmentActivity; public class BaseActivity extends FragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); int theme = new SkinManager(this).getCurrentSkinRes(); setTheme(theme); } }