Cannot find the character "OnKeyListener"

What am I missing? I feel stupid when I have to post this, but maybe someone else will see the (probably obvious) error that I am making.

import android.app.Activity;
import android.os.Bundle;
import android.view.*;
import android.widget.*;

public class Primes extends Activity implements OnKeyListener
{
...
}

Error:

[javac] ...Primes.java:9: cannot find symbol
[javac] symbol: class OnKeyListener
[javac] public class Primes extends Activity implements OnKeyListener
+3
source share
1 answer

This is a nested interface .

public class Primes extends Activity implements View.OnKeyListener
+2
source

All Articles