标签: android eclipse colors packages
Eclipse让我非常奇怪的错误: 对于ColorDrawable
android.graphics.drawable.ColorDrawable dd = new android.graphics.drawable.ColorDrawable(); dd.getColor();
我不知道如何修复它。所有其他方法都存在。跆拳道?
答案 0 :(得分:3)
您的目标API级别是多少? ColorDrawable.getColor()是在API级别11中引入的,因此如果您的目标是较低的API级别,则无法访问该功能。
答案 1 :(得分:0)
为什么不将Drawable绘制到一个微小的屏幕外Bitmap,并调用getPixel来检索你画的颜色?