It doesn't seem to be connected with Volley. Clean project if that doesn't work try to remove it and compile again. To do that you can simply add dependency to your build.gradle
file. You should have something like:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion ...
....
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
...
compile 'com.mcxiaoke.volley:library:1.+'
}
If you want to read about other methods of importing VOLLELY, click here.