如何通过Robolectric以编程方式获取自定义主题值

时间:2014-10-21 19:52:23

标签: android android-theme robolectric

我可以通过以下方式访问我的应用中的自定义颜色主题值:

private int getTextColorFromTheme(int textAppearanceAttrResId, int state) {
    TypedValue typedValue = new TypedValue();

>>>>/* missing TypedValue.data in Robolectric!! */
    Resources.Theme theme = mContext.getTheme();

    // textAppearanceAttrResId is a reference, so it is required to be retrieved this way.
    theme.resolveAttribute(textAppearanceAttrResId, typedValue, true);

    int[] textColorAttr = new int[]{android.R.attr.textColor};
    int indexOfAttrTextColor = 0;
    TypedArray a = mContext.obtainStyledAttributes(typedValue.data, textColorAttr);
    ColorStateList csl = a.getColorStateList(indexOfAttrTextColor);

>>>>/* NPE thrown here in Robolectric! */
    int color = csl.getColorForState(new int[]{state}, -1);

    a.recycle();

    return color;
}

但是Robolectric在尝试访问ColorStateList时会抛出一个NPE。我注意到mContext.getTheme()返回一个带有TypedArray的主题,其数据为0。

mContext先前在setup()中设置:

    ActivityController<MyActivity> activityController = Robolectric.buildActivity(MyActivity.class).attach();
    MyActivity activity = activityController.get();

    activity.setTheme(com.sudocoder.android.theme.R.style.Theme_Mine);
    activityController.create().start().resume().visible();

    mContext = activity;

1 个答案:

答案 0 :(得分:0)

我们在现有团队中使用Robolectric获得某些资源时遇到了很大的问题。看起来像类型的资源,并抛出ResourceNotFound异常或返回不正确的值(如null或零)。根据您的项目设置,您可能可以使用Mockito来模拟主题,但除此之外我不知道是否还有很多工作要做 - 也许其他人会知道更多。