请参考下面的代码

ForegroundColorSpan ss = new ForegroundColorSpan(context.getResources().getColor(R.color.red_text));


这就是我要做的,但是由于错误。

最佳答案

在非活动Java类中,您可以执行以下操作:

public static void doSomething(Context ctx){
        ctx.getResources().getDrawable(R.drawable.app_icon);
    }


并从您的activity类中调用它。

javaClassObj.doSomething(this);

10-08 15:07