English 中文(简体)
在另一个内部添加一个管理器
原标题:Adding one manager within the other

如何在网格域网域管理器中添加眼皮字段管理器 。

我创造了一个网格布局。 现在我想在它上面加上一个眼皮场经理。

我已能够分别地加上这两个问题,但现在无法共同使用这两个问题。

我想整合时使用以下代码

         _eyelidFieldManager.add(grid);
         add(_eyelidFieldManager);

否则,如何做到这一点?

我也尝试过这样补充

       grid.add(_eyelidFieldManager);
       add(grid);

但我得到的是眼盖的外勤经理 出现在网格下面。我想在网格顶部叠上眼盖。所以当我在网格屏幕上点击任何地方时,眼盖就会打开。你的帮助将会感激不尽。

问题回答




相关问题
add text in http request string url

ok i made a midlet through which i can connect to server pages and get soem information as response. For example i made a midlet through which i acced url: http://example.com/?u=nepal&t=1 Now i ...

Do I have to do a setSize() on a Vector before using it?

Given private final Vector v = new Vector(); //instance variable the following 3 lines are in an instance method in the same class. 1. int length = v.capacity(); 2. int size = v.size(); ...

Is the situation with Java ME improving?

It seems to be the consensus that developing for Java ME is not as cross platform as you might expect, particularly compared to say java SE, but it is difficult to assess how the situation is evolving....

Privileged operations in netbeans mobility

I m writing a Java ME app that will use privileged operations such as messaging. By default the user is prompted to confirm each of these operations, but I would like to run it as a background ...

ClassFormatError: 56 while using hessian in j2me

I am trying to use the hessian j2me implementation @ http://hessian.caucho.com/ using java me sdk 3.0. http://hessian.caucho.com/doc/hessian-overview.xtp#Hessian%20Client%20for%20a%20cell-phone ...

热门标签