从Android中的ArrayAdapter访问资源

时间:2011-11-21 19:52:29

标签: java android android-arrayadapter

我定义了一些资源,例如:

<color name="lightGrey">#FFCCCCCC</color>
<integer name="KEY_POSITION_ARM">2</integer>

...我有一个ArrayAdapter向TextViews显示项目。我正在尝试使用以下代码访问值:

keyPosition = getResources().getInteger(R.integer.KEY_POSITION_ARM);
moduleDataView.setTextColor(getResources().getColor(R.color.darkgreen));

...但我得到的错误如“方法getResources()未定义类型ContinuityAdapter”。 (ContinuityAdapter扩展了ArrayAdapter)

这有什么好方法吗?

由于

这是一个例子:

switch (currentModule.keyPosition) {
case activity.getResources().getInteger(R.integer.KEY_POSITION_ARM):
    moduleDataView.keyPosition.setText("TEST");
    moduleDataView.keyPosition.setTextColor(Color.GREEN);
    break;
case R.integer.KEY_POSITION_ARM:
    moduleDataView.keyPosition.setText("ARM");
    moduleDataView.keyPosition.setTextColor(Color.RED);
    break;
}

第一种情况给出错误,第二种情况不会,但也不使用XML文件中的值。虽然正如你所说,我可以只使用R ...值,只要我在任何地方使用它。只是不确定这是否被认为是“最佳实践”。感谢

1 个答案:

答案 0 :(得分:23)

您需要Context个对象来调用Context.getResources()方法。通常,您可以通过自定义适配器的构造函数传递Context或其子类(即Activity)。

像:

public ContinuityAdapter extends ArrayAdapter {
    private final Context mContext;
    ...
    public ContinuityAdapter(Context context) {
        mContext = context;
    }
}

然后使用:

mContext.getResources()...

修改: 这似乎是避免切换的情况。参见: