滚动垂直字段管理器
我想滚动屏幕,因为按钮无法在屏幕上显示
我使用此代码:
_manager = new VerticalFieldManager(VERTICAL_SCROLL | VERTICAL_SCROLLBAR);
_manager = (VerticalFieldManager)getMainManager(); _manager.setBackground(bg);
但不工作
i want to scroll screen because button cannot show on screen
i use this code :
_manager = new VerticalFieldManager(VERTICAL_SCROLL | VERTICAL_SCROLLBAR);
_manager = (VerticalFieldManager)getMainManager();
_manager.setBackground(bg);
but not work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的目的是吸引用户使用该按钮,那么您可以执行以下操作:
If your intention is to attract the user to the button, then you can just do the following:
首先,我假设您已经扩展了 MainScreen,其中添加了一个默认的 VFM。现在您正在创建一个新的VFM,
然后将MainScreen的默认父管理器的引用分配给您刚刚在上面创建的_manager,
除非您想在其上设置背景,否则不需要检索父管理器。因此,将引用分配给其他一些变量,而不是使用相同的 _manager。
现在回到您最初的问题,您可以发布一些代码来显示如何向屏幕添加按钮吗?您应该将按钮添加到管理器并将该管理器添加到屏幕的父管理器。
First of all I am assuming that you have extended MainScreen which have one default VFM added to it. Now you are creating a new VFM,
and then assigning reference of default parent manager of MainScreen to _manager that you just created above,
There is no need for retrieving parent manager unless you want to set background on it. So assign reference to some other variable instead of using same _manager.
Now coming back to your original question, can you post some code that shows how you are adding buttons to screen? You should add button to manager and add this manager to parent manager of the screen.