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.
我为 Blackberry 平台开发了一个 Phonegap 应用程序。我遇到的一个问题是,在滚动页面时,页眉和页脚隐藏在 Blackberry Phonegap 应用程序中。
谁能帮我解决这个问题?
将放置页眉和页脚的父垂直管理器设为
NO_VERTICAL_SCROLL|NO_VERTICAL_SCROLLBAR
而所有其余的数据都应该放在一个单独的垂直管理器(v1)中,它是
VerticalFieldManager vr1 = new VerticalFieldManager(VERTICAL_SCROLL|VERTICAL_SCROLLBAR);
而这又被放置在父垂直管理器中;
verticalManager.add(vr1);
如果您发布代码,则可以更好地解释答案。