我试图从存在于不同文件中的另一个类中调用方法。

主文件:

public class Test extends AndroidTestCase {
    mTestUtils = new TestUtils(this, TAG, OUTPUT_FILE);


第二档:

public class TestUtils {
    public TestUtils(Context context, String tag, String outputFile) {

        mContext = context;
        mTag = tag;
        mOutputFile = outputFile;
    }
}


它引发构造函数未定义的错误。
任何帮助,将不胜感激。

最佳答案

你在做

TestUtils(this, TAG, OUTPUT_FILE);


但是this在这种情况下不是上下文。

方法getContext()将为您提供,只需查看doc

09-30 10:54