Android Studio ERROR: Cannot resolve symbol ‘View’

I think you forget to include the import statement for View. Add the following import in your code

import android.view.View;

Leave a Comment