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.
次のコードを使用します:</p>
Bitmap myBmp = Bitmap.createBitmap( 720, 1280, Config.ARGB_8888 ); byte []data = myBmp.mBuffer ????
しかし、mBuffer にアクセスできないことがわかりました。また、Eclipse でアクセスできないというヒントはありません。何が問題ですか?
ピクセルにアクセスしたい場合は、
Bitmap.getPixel(int,int)
と
Bitmap.setPixel(int,int)
これはあなたがやりたいことですか?
編集:@hide 「問題」は、アノテーションが付けられたメンバーをコード補完から隠し、Eclipse のコンパイルを停止させるエラーを引き起こすJava アノテーションです。
@hide