本文整理匯總了Java中com.afollestad.appthemeengine.customizers.ATENavigationBarCustomizer類的典型用法代碼示例。如果您正苦於以下問題:Java ATENavigationBarCustomizer類的具體用法?Java ATENavigationBarCustomizer怎麽用?Java ATENavigationBarCustomizer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ATENavigationBarCustomizer類屬於com.afollestad.appthemeengine.customizers包,在下文中一共展示了ATENavigationBarCustomizer類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: navigationBarColor
import com.afollestad.appthemeengine.customizers.ATENavigationBarCustomizer; //導入依賴的package包/類
@CheckResult
@ColorInt
public static int navigationBarColor(@NonNull Context context, @Nullable String key) {
if (context instanceof ATENavigationBarCustomizer) {
int color = ((ATENavigationBarCustomizer) context).getNavigationBarColor();
if (color != ATE.USE_DEFAULT) return color;
} else if (!coloredNavigationBar(context, key)) {
return Color.BLACK;
}
return prefs(context, key).getInt(KEY_NAVIGATION_BAR_COLOR, primaryColor(context, key));
}
示例2: navigationBarColor
import com.afollestad.appthemeengine.customizers.ATENavigationBarCustomizer; //導入依賴的package包/類
@CheckResult
@ColorInt
public static int navigationBarColor(@NonNull Context context, @Nullable String key) {
if (context instanceof ATENavigationBarCustomizer)
return ((ATENavigationBarCustomizer) context).getNavigationBarColor();
return prefs(context, key).getInt(KEY_NAVIGATION_BAR_COLOR, primaryColor(context, key));
}