I use this code but error comes, it says that "cannot find class symbol nullable"
package com.example.fd.miwok;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
public class WordAdapter extends ArrayAdapter<Word> {
@androidx.annotation.NonNull
@Override
public View getView(int position, @androidx.annotation.Nullable View convertView, @androidx.annotation.NonNull ViewGroup parent) {
return super.getView(position, convertView, parent);
}
}