當前位置: 首頁>>代碼示例>>Java>>正文


Java AccentHelper類代碼示例

本文整理匯總了Java中com.negusoft.holoaccent.AccentHelper的典型用法代碼示例。如果您正苦於以下問題:Java AccentHelper類的具體用法?Java AccentHelper怎麽用?Java AccentHelper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


AccentHelper類屬於com.negusoft.holoaccent包,在下文中一共展示了AccentHelper類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: init

import com.negusoft.holoaccent.AccentHelper; //導入依賴的package包/類
private void init(Context context, AttributeSet attrs, int defStyle) {
    mPalette = AccentHelper.getPalette(context);

    TypedArray a = context.obtainStyledAttributes(attrs,
            R.styleable.AccentRatingBar, defStyle, 0);
    mEmptyColor = a.getColor(R.styleable.AccentRatingBar_android_colorBackground, Color.GRAY);
    mBorderColor = a.getColor(R.styleable.AccentRatingBar_android_colorForeground, Color.BLACK);
    mBorderFilledColor = a.getColor(R.styleable.AccentRatingBar_android_colorForegroundInverse, Color.GRAY);
    a.recycle();

    mFillPaint = initFillPaint();
}
 
開發者ID:negusoft,項目名稱:holoaccent,代碼行數:13,代碼來源:AccentRatingBar.java

示例2: initPalette

import com.negusoft.holoaccent.AccentHelper; //導入依賴的package包/類
private AccentPalette initPalette(Context c) {
    AccentPalette result = AccentHelper.getPalette(c);
    if (result == null) {
        int defaultColor = c.getResources().getColor(android.R.color.holo_blue_light);
        return new AccentPalette(defaultColor);
    }
    return result;
}
 
開發者ID:negusoft,項目名稱:holoaccent,代碼行數:9,代碼來源:CheckableTextView.java

示例3: getAccentHelper

import com.negusoft.holoaccent.AccentHelper; //導入依賴的package包/類
/** Getter for the AccentHelper instance. */
public AccentHelper getAccentHelper() {
  return mAccentHelper;
}
 
開發者ID:macbury,項目名稱:EnklawaPlayer,代碼行數:5,代碼來源:AccentFragmentActivity.java

示例4: initColor

import com.negusoft.holoaccent.AccentHelper; //導入依賴的package包/類
private int initColor(Context c) {
    AccentPalette palette = AccentHelper.getPalette(c);
    if (palette == null)
        return c.getResources().getColor(android.R.color.holo_blue_light);
    return palette.getAccentColor();
}
 
開發者ID:negusoft,項目名稱:holoaccent,代碼行數:7,代碼來源:DividerPainter.java

示例5: AccentHelper

import com.negusoft.holoaccent.AccentHelper; //導入依賴的package包/類
public AccentHelper() {
	mOverrideThemeColor = false;
	mOverrideColor = 0;
       mOverrideColorDark = 0;
       mOverrideColorActionBar = 0;
}
 
開發者ID:negusoft,項目名稱:holoaccent,代碼行數:7,代碼來源:AccentHelper.java

示例6: getAccentHelper

import com.negusoft.holoaccent.AccentHelper; //導入依賴的package包/類
/** Getter for the AccentHelper instance. */
public AccentHelper getAccentHelper() {
    return mAccentHelper;
}
 
開發者ID:negusoft,項目名稱:holoaccent,代碼行數:5,代碼來源:AccentActivity.java


注:本文中的com.negusoft.holoaccent.AccentHelper類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。