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)
这是你想做的吗?
编辑: “问题”是 Java 注释@hide,它隐藏了代码完成注释的成员,并引发了阻止 eclipse 编译的错误。
@hide