11

例えば:

int width = 720;
int height = 1280;

Camera.Size を作成したい。

Camera.Size size = new Camera.Size(width,height);

しかし、それにはいくつかのエラーがあります。

No enclosing instance of type Camera is accessible. Must qualify the allocation with an enclosing instance of type Camera (e.g. x.new A() where x is an instance of Camera).
4

2 に答える 2

19

実際には、わずかに異なる構文が必要です。

Camera camera = Camera.open();
Camera.Size size = camera.new Size(width, height);
于 2014-09-08T19:01:29.427 に答える