Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipseで非常に奇妙なエラーが発生します:メソッドgetColor()がタイプColorDrawableに対して未定義です
android.graphics.drawable.ColorDrawable dd = new android.graphics.drawable.ColorDrawable(); dd.getColor();
どうやって直せばいいのかわからない。他のすべてのメソッドが存在します。wtf?
ターゲットAPIレベルは何ですか?ColorDrawable.getColor()はAPIレベル11で導入されているため、より低いAPIレベルをターゲットにしている場合は、その関数にアクセスできません。
Drawableを小さなオフスクリーンビットマップに描画し、getPixelを呼び出して、描画した色を取得してみませんか?