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


Java Theme.applyStyle方法代码示例

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


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

示例1: ensureListMenuPresenter

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
private void ensureListMenuPresenter(Menu menu) {
    if (this.mListMenuPresenter == null && (menu instanceof MenuBuilder)) {
        MenuBuilder mb = (MenuBuilder) menu;
        Context context = this.mDecorToolbar.getContext();
        TypedValue outValue = new TypedValue();
        Theme widgetTheme = context.getResources().newTheme();
        widgetTheme.setTo(context.getTheme());
        widgetTheme.resolveAttribute(R.attr.actionBarPopupTheme, outValue, true);
        if (outValue.resourceId != 0) {
            widgetTheme.applyStyle(outValue.resourceId, true);
        }
        widgetTheme.resolveAttribute(R.attr.panelMenuListTheme, outValue, true);
        if (outValue.resourceId != 0) {
            widgetTheme.applyStyle(outValue.resourceId, true);
        } else {
            widgetTheme.applyStyle(R.style.Theme_AppCompat_CompactMenu, true);
        }
        Context context2 = new ContextThemeWrapper(context, 0);
        context2.getTheme().setTo(widgetTheme);
        this.mListMenuPresenter = new ListMenuPresenter(context2, R.layout.abc_list_menu_item_layout);
        this.mListMenuPresenter.setCallback(new PanelMenuPresenterCallback());
        mb.addMenuPresenter(this.mListMenuPresenter);
    }
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:25,代码来源:ToolbarActionBar.java

示例2: setStyle

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
void setStyle(Context context) {
    TypedValue outValue = new TypedValue();
    Theme widgetTheme = context.getResources().newTheme();
    widgetTheme.setTo(context.getTheme());
    widgetTheme.resolveAttribute(R.attr.actionBarPopupTheme, outValue, true);
    if (outValue.resourceId != 0) {
        widgetTheme.applyStyle(outValue.resourceId, true);
    }
    widgetTheme.resolveAttribute(R.attr.panelMenuListTheme, outValue, true);
    if (outValue.resourceId != 0) {
        widgetTheme.applyStyle(outValue.resourceId, true);
    } else {
        widgetTheme.applyStyle(R.style.Theme_AppCompat_CompactMenu, true);
    }
    Context context2 = new ContextThemeWrapper(context, 0);
    context2.getTheme().setTo(widgetTheme);
    this.listPresenterContext = context2;
    TypedArray a = context2.obtainStyledAttributes(R.styleable.AppCompatTheme);
    this.background = a.getResourceId(R.styleable.AppCompatTheme_panelBackground, 0);
    this.windowAnimations = a.getResourceId(R.styleable.AppCompatTheme_android_windowAnimationStyle, 0);
    a.recycle();
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:23,代码来源:AppCompatDelegateImplV7.java

示例3: initializePanelMenu

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
private boolean initializePanelMenu(PanelFeatureState st) {
    Context context = this.mContext;
    if ((st.featureId == 0 || st.featureId == 108) && this.mDecorContentParent != null) {
        TypedValue outValue = new TypedValue();
        Theme baseTheme = context.getTheme();
        baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
        Theme widgetTheme = null;
        if (outValue.resourceId != 0) {
            widgetTheme = context.getResources().newTheme();
            widgetTheme.setTo(baseTheme);
            widgetTheme.applyStyle(outValue.resourceId, true);
            widgetTheme.resolveAttribute(R.attr.actionBarWidgetTheme, outValue, true);
        } else {
            baseTheme.resolveAttribute(R.attr.actionBarWidgetTheme, outValue, true);
        }
        if (outValue.resourceId != 0) {
            if (widgetTheme == null) {
                widgetTheme = context.getResources().newTheme();
                widgetTheme.setTo(baseTheme);
            }
            widgetTheme.applyStyle(outValue.resourceId, true);
        }
        if (widgetTheme != null) {
            Context context2 = new ContextThemeWrapper(context, 0);
            context2.getTheme().setTo(widgetTheme);
            context = context2;
        }
    }
    MenuBuilder menu = new MenuBuilder(context);
    menu.setCallback(this);
    st.setMenu(menu);
    return true;
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:34,代码来源:AppCompatDelegateImplV7.java

示例4: m1771a

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
void m1771a(Context context) {
    TypedValue typedValue = new TypedValue();
    Theme newTheme = context.getResources().newTheme();
    newTheme.setTo(context.getTheme());
    newTheme.resolveAttribute(C0233b.actionBarPopupTheme, typedValue, true);
    if (typedValue.resourceId != 0) {
        newTheme.applyStyle(typedValue.resourceId, true);
    }
    newTheme.resolveAttribute(C0233b.panelMenuListTheme, typedValue, true);
    if (typedValue.resourceId != 0) {
        newTheme.applyStyle(typedValue.resourceId, true);
    } else {
        newTheme.applyStyle(C0242k.Theme_AppCompat_CompactMenu, true);
    }
    Context c0249e = new C0249e(context, 0);
    c0249e.getTheme().setTo(newTheme);
    this.f646l = c0249e;
    TypedArray obtainStyledAttributes = c0249e.obtainStyledAttributes(C0243l.AppCompatTheme);
    this.f636b = obtainStyledAttributes.getResourceId(C0243l.AppCompatTheme_panelBackground, 0);
    this.f640f = obtainStyledAttributes.getResourceId(C0243l.AppCompatTheme_android_windowAnimationStyle, 0);
    obtainStyledAttributes.recycle();
}
 
开发者ID:Qwaz,项目名称:solved-hacking-problem,代码行数:23,代码来源:aq.java

示例5: getPreloaderTheme

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
private Theme getPreloaderTheme() {
    Object tag = getTag();
    int style = ((tag != null) && (tag instanceof ShortcutInfo) &&
            (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder
                    : R.style.PreloadIcon;
    Theme theme = sPreloaderThemes.get(style);
    if (theme == null) {
        theme = getResources().newTheme();
        theme.applyStyle(style, true);
        sPreloaderThemes.put(style, theme);
    }
    return theme;
}
 
开发者ID:michelelacorte,项目名称:FlickLauncher,代码行数:14,代码来源:BubbleTextView.java

示例6: m1681b

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
private boolean m1681b(aq aqVar) {
    Context c0249e;
    C0264i c0264i;
    Context context = this.a;
    if ((aqVar.f635a == 0 || aqVar.f635a == C0243l.AppCompatTheme_ratingBarStyleSmall) && this.f597r != null) {
        TypedValue typedValue = new TypedValue();
        Theme theme = context.getTheme();
        theme.resolveAttribute(C0233b.actionBarTheme, typedValue, true);
        Theme theme2 = null;
        if (typedValue.resourceId != 0) {
            theme2 = context.getResources().newTheme();
            theme2.setTo(theme);
            theme2.applyStyle(typedValue.resourceId, true);
            theme2.resolveAttribute(C0233b.actionBarWidgetTheme, typedValue, true);
        } else {
            theme.resolveAttribute(C0233b.actionBarWidgetTheme, typedValue, true);
        }
        if (typedValue.resourceId != 0) {
            if (theme2 == null) {
                theme2 = context.getResources().newTheme();
                theme2.setTo(theme);
            }
            theme2.applyStyle(typedValue.resourceId, true);
        }
        Theme theme3 = theme2;
        if (theme3 != null) {
            c0249e = new C0249e(context, 0);
            c0249e.getTheme().setTo(theme3);
            c0264i = new C0264i(c0249e);
            c0264i.m2109a((C0203j) this);
            aqVar.m1772a(c0264i);
            return true;
        }
    }
    c0249e = context;
    c0264i = new C0264i(c0249e);
    c0264i.m2109a((C0203j) this);
    aqVar.m1772a(c0264i);
    return true;
}
 
开发者ID:Qwaz,项目名称:solved-hacking-problem,代码行数:41,代码来源:ae.java

示例7: onApplyThemeResource

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
protected void onApplyThemeResource(Theme theme, int resid, boolean first) {
    theme.applyStyle(resid, true);
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:4,代码来源:ContextThemeWrapper.java

示例8: m1999a

import android.content.res.Resources.Theme; //导入方法依赖的package包/类
protected void m1999a(Theme theme, int i, boolean z) {
    theme.applyStyle(i, true);
}
 
开发者ID:Qwaz,项目名称:solved-hacking-problem,代码行数:4,代码来源:C0249e.java


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