3

I have written a class with the following constructor

public CustomDialog(Context context)

But when I try to do this in my activity

CustomDialog diag = new CustomDialog(getApplicationContext()){/*stuff here*/};

I get the error The constructor CustomDialog(Context) refers to the missing type Context

What does this mean? And how do I fix it?

4

6 に答える 6

5

これは何を意味するのでしょうか?

私の知る限り、次のいずれかです。

  • import android.content.Context、またはがありません

  • あなたのプロジェクトはめちゃくちゃで、コンパイラはandroid.content.Contextビルド パスで見つけることができません

于 2013-06-22T21:34:49.147 に答える
0

コードを追加してから再度削除することで修正しました。たとえば、空のステートメントを追加してから削除します。Eclipse はエラーを再度チェックしますが、エラーは検出されません。

于 2016-09-13T21:37:40.740 に答える
0

プロジェクトでMavenの更新を行いましたが、うまくいきました。

于 2019-06-11T13:50:00.993 に答える