当前位置: 首页>>代码示例>>Java>>正文


Java ThemeManager.applyTheme方法代码示例

本文整理汇总了Java中org.holoeverywhere.ThemeManager.applyTheme方法的典型用法代码示例。如果您正苦于以下问题:Java ThemeManager.applyTheme方法的具体用法?Java ThemeManager.applyTheme怎么用?Java ThemeManager.applyTheme使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.holoeverywhere.ThemeManager的用法示例。


在下文中一共展示了ThemeManager.applyTheme方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onInit

import org.holoeverywhere.ThemeManager; //导入方法依赖的package包/类
/**
 * Do not override this method. Use {@link #onPreInit(Holo, Bundle)} and
 * {@link #onPostInit(Holo, Bundle)}
 */
protected void onInit(Holo config, Bundle savedInstanceState) {
    if (mInited) {
        throw new IllegalStateException("This instance was already inited");
    }
    mInited = true;
    if (config == null) {
        config = createConfig(savedInstanceState);
    }
    if (config == null) {
        config = Holo.defaultConfig();
    }
    onPreInit(config, savedInstanceState);
    if (!config.ignoreApplicationInstanceCheck && !(getApplication() instanceof Application)) {
        boolean throwError = true;
        if (config.allowMockApplicationInstance) {
            try {
                throwError = !(getApplication() instanceof MockApplication);
                if (!throwError) {
                    Log.w("HoloEverywhere", "Application instance is MockApplication. Wow. Let's begin tests...");
                }
            } catch (Exception e) {
            }
        }
        if (throwError) {
            String text = "Application instance isn't HoloEverywhere.\n";
            if (getApplication().getClass() == android.app.Application.class) {
                text += "Put attr 'android:name=\"org.holoeverywhere.app.Application\"'" +
                        " in <application> tag of AndroidManifest.xml";
            } else {
                text += "Please sure that you extend " + getApplication().getClass() +
                        " from a org.holoeverywhere.app.Application";
            }
            throw new IllegalStateException(text);
        }
    }
    getLayoutInflater().setFragmentActivity(this);
    if (this instanceof Activity) {
        final Activity activity = (Activity) this;
        ThemeManager.applyTheme(activity, mLastThemeResourceId == 0);
        if (!config.ignoreThemeCheck && ThemeManager.getThemeType(this) == ThemeManager.INVALID) {
            throw new HoloThemeException(activity);
        }
        TypedArray a = obtainStyledAttributes(new int[]{android.R.attr.windowActionBarOverlay, R.attr.windowActionBarOverlay});
        if (a.getBoolean(0, false) || a.getBoolean(1, false)) {
            supportRequestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
        }
        a.recycle();
        a = obtainStyledAttributes(new int[]{android.R.attr.windowActionModeOverlay, R.attr.windowActionBarOverlay});
        if (a.getBoolean(0, false) || a.getBoolean(1, false)) {
            supportRequestWindowFeature(Window.FEATURE_ACTION_MODE_OVERLAY);
        }
        a.recycle();
    }
    onPostInit(config, savedInstanceState);
    lockAttaching();
}
 
开发者ID:restorer,项目名称:gloomy-dungeons-2,代码行数:61,代码来源:_HoloActivity.java

示例2: onInit

import org.holoeverywhere.ThemeManager; //导入方法依赖的package包/类
/**
 * Do not override this method. Use {@link #onPreInit(Holo, Bundle)} and
 * {@link #onPostInit(Holo, Bundle)}
 */
protected void onInit(Holo config, Bundle savedInstanceState) {
    if (mInited) {
        throw new IllegalStateException("This instance was already inited");
    }
    mInited = true;
    if (config == null) {
        config = createConfig(savedInstanceState);
    }
    if (config == null) {
        config = Holo.defaultConfig();
    }
    onPreInit(config, savedInstanceState);
    if (!config.ignoreApplicationInstanceCheck && !(getApplication() instanceof Application)) {
        String text = "Application instance isn't HoloEverywhere.\n";
        if (getApplication().getClass() == android.app.Application.class) {
            text += "Put attr 'android:name=\"org.holoeverywhere.app.Application\"'" +
                    " in <application> tag of AndroidManifest.xml";
        } else {
            text += "Please sure that you extend " + getApplication().getClass() +
                    " from a org.holoeverywhere.app.Application";
        }
        throw new IllegalStateException(text);
    }
    getLayoutInflater().setFragmentActivity(this);
    if (this instanceof Activity) {
        Activity activity = (Activity) this;
        if (config.requireRoboguice) {
            activity.addon(Activity.ADDON_ROBOGUICE);
        }
        if (config.requireSlider) {
            activity.addon(Activity.ADDON_SLIDER);
        }
        if (config.requireSherlock) {
            activity.addonSherlock();
        }
        final SparseIntArray windowFeatures = config.windowFeatures;
        if (windowFeatures != null) {
            for (int i = 0; i < windowFeatures.size(); i++) {
                if (windowFeatures.valueAt(i) > 0) {
                    requestWindowFeature((long) windowFeatures.keyAt(i));
                }
            }
        }
        ThemeManager.applyTheme(activity, mLastThemeResourceId == 0);
        if (!config.ignoreThemeCheck && ThemeManager.getThemeType(this) == ThemeManager.INVALID) {
            throw new HoloThemeException(activity);
        }
        TypedArray a = obtainStyledAttributes(new int[] {
                android.R.attr.windowActionBarOverlay, R.attr.windowActionBarOverlay
        });
        if (a.getBoolean(0, false) || a.getBoolean(1, false)) {
            requestWindowFeature((long) Window.FEATURE_ACTION_BAR_OVERLAY);
        }
        a.recycle();
    }
    onPostInit(config, savedInstanceState);
    lockAttaching();
}
 
开发者ID:WassimBenltaief,项目名称:laposte-android,代码行数:63,代码来源:_HoloActivity.java

示例3: onInit

import org.holoeverywhere.ThemeManager; //导入方法依赖的package包/类
/**
 * Do not override this method. Use {@link #onPreInit(Holo, Bundle)} and
 * {@link #onPostInit(Holo, Bundle)}
 */
protected void onInit(Holo config, Bundle savedInstanceState) {
    if (mInited) {
        throw new IllegalStateException("This instance was already inited");
    }
    mInited = true;
    if (config == null) {
        config = createConfig(savedInstanceState);
    }
    if (config == null) {
        config = Holo.defaultConfig();
    }
    onPreInit(config, savedInstanceState);
    if (!config.ignoreApplicationInstanceCheck && !(getApplication() instanceof Application)) {
        String text = "Application instance isn't HoloEverywhere.\n";
        if (getApplication().getClass() == android.app.Application.class) {
            text += "Put attr 'android:name=\"org.holoeverywhere.app.Application\"'" +
                    " in <application> tag of AndroidManifest.xml";
        } else {
            text += "Please sure that you extend " + getApplication().getClass() +
                    " from a org.holoeverywhere.app.Application";
        }
        throw new IllegalStateException(text);
    }
    getLayoutInflater().setFragmentActivity(this);
    if (this instanceof Activity) {
        Activity activity = (Activity) this;
        if (config.requireRoboguice) {
            activity.addon(Activity.ADDON_ROBOGUICE);
        }
        if (config.requireSlider) {
            activity.addon(Activity.ADDON_SLIDER);
        }
        if (config.requireSherlock) {
            activity.addonSherlock();
        }
        final SparseIntArray windowFeatures = config.windowFeatures;
        if (windowFeatures != null) {
            for (int i = 0; i < windowFeatures.size(); i++) {
                if (windowFeatures.valueAt(i) > 0) {
                    requestWindowFeature((long) windowFeatures.keyAt(i));
                }
            }
        }
        boolean forceThemeApply = isForceThemeApply();
        if (config.forceThemeApply) {
            setForceThemeApply(forceThemeApply = true);
        }
        if (mLastThemeResourceId == 0) {
            forceThemeApply = true;
        }
        ThemeManager.applyTheme(activity, forceThemeApply);
        if (!config.ignoreThemeCheck && ThemeManager.getThemeType(this) == ThemeManager.INVALID) {
            throw new HoloThemeException(activity);
        }
    }
    onPostInit(config, savedInstanceState);
    lockAttaching();
}
 
开发者ID:antonyt,项目名称:TflTravelAlerts,代码行数:63,代码来源:_HoloActivity.java


注:本文中的org.holoeverywhere.ThemeManager.applyTheme方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。