如何从库项目中引用应用程序主题属性?

时间:2015-01-24 00:47:45

标签: android android-ui android-theme android-library android-styles

我正在构建一个库,并希望尽可能保持通用。

因此,我想将textColor的{​​{1}}属性设置为使用我的库指定为TextView的应用。

使用primaryColor似乎给我一个随机颜色,而不是我的测试应用程序中指定的颜色。这可能是因为它试图在库的android:textColor="?colorPrimary"文件中查找该资源ID而不是询问应用程序?

那么可以引用库范围之外的颜色吗?我知道我可以通过引入自定义属性来解决这个问题,但我想避免使用该解决方案,因为它需要库的用户更新他们的应用主题,并且它不会开箱即用。

1 个答案:

答案 0 :(得分:2)

供将来参考:

我无法找到基于XML的解决方案,但您可以做的是在运行时以编程方式读出主题属性并从Java应用它们。

以下是我为Android-MaterialPreference库所做的工作,除了读取应用程序之外,colorAccent属性还会查找可选的自定义mp_colorAccent属性可以覆盖默认颜色。评论应该足够清晰。

package com.jenzz.materialpreference;

import android.annotation.TargetApi;
import android.content.Context;
import android.content.res.Resources.Theme;
import android.content.res.TypedArray;

import static android.graphics.Color.parseColor;
import static android.os.Build.VERSION.SDK_INT;
import static android.os.Build.VERSION_CODES.LOLLIPOP;

final class ThemeUtils {

  // material_deep_teal_500
  static final int FALLBACK_COLOR = parseColor("#009688");

  private ThemeUtils() {
    // no instances
  }

  static boolean isAtLeastL() {
    return SDK_INT >= LOLLIPOP;
  }

  @TargetApi(LOLLIPOP)
  static int resolveAccentColor(Context context) {
    Theme theme = context.getTheme();

    // on Lollipop, grab system colorAccent attribute
    // pre-Lollipop, grab AppCompat colorAccent attribute
    // finally, check for custom mp_colorAccent attribute
    int attr = isAtLeastL() ? android.R.attr.colorAccent : R.attr.colorAccent;
    TypedArray typedArray = theme.obtainStyledAttributes(new int[] { attr, R.attr.mp_colorAccent });

    int accentColor = typedArray.getColor(0, FALLBACK_COLOR);
    accentColor = typedArray.getColor(1, accentColor);
    typedArray.recycle();

    return accentColor;
  }

}