我正在閱讀Popup Menu的文檔。我有一個ImageView的在我的XML佈局:將源添加到彈出式菜單
<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" />
我收到錯誤「無法解析符號‘@繪製/ ic_overflow_holo_dark’」。在我的res/drawable文件夾中,沒有名爲ic_overflow_holo_dark的圖標。但是,它出現在文檔中。這個圖形是由Android提供的嗎?我如何獲得Popup src圖標?
這是我的應用程序/的build.gradle的樣子:
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'
}
}
}
chk你的文件夾mipmap –
@AmodGokhale它包含的全部內容是ic_launcher.png。它應該有更多的圖標?這是在Android Studio中。 – Donato
文件> Intellij Idea Studio與Android Studio插件的項目結構將爲您提供Android SDK安裝的路徑。 – Donato