I am reading over the documentation for the Popup Menu. I have an ImageView in my xml layout:
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_overflow_holo_dark"
android:contentDescription="@string/descr_overflow_button"
android:onClick="showPopup" />
I am getting the error "Cannot Resolve Symbol '@drawable/ic_overflow_holo_dark'". In my res/drawable folder, there is no such icon named ic_overflow_holo_dark. Yet, it appears in the documentation. Is this graphic provided by Android? How can I get the Popup src icon?
This is what my app/build.gradle looks like:
android {
compileSdkVersion 22
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "io.menuloop.menuloopandroid"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}