为了使垂直滚动条可见而不被点击或触摸,应该添加什么?这是屏幕图像:
这是代码:
<s:Scroller width="100%" height="100%">
<s:VGroup width="100%" height="100%" paddingTop="5" verticalAlign="middle" horizontalAlign="center">
<s:TextInput id="chp1" width="50%"/>
<s:TextInput id="chp2" width="50%"/>
<s:Button label="Enregistrer" click="enregistrer(event)" styleName="btn"/>
<s:Label/>
<s:Button label="Lire" click="lire(event)" styleName="btn" />
<s:TextArea id="area"/>
<s:Label/>
<s:HGroup>
<s:Button label="Envoyer" click="send(event)" styleName="btn" />
<s:Button label="Retour" click="navigator.popView()" styleName="btn" />
</s:HGroup>
<s:TextArea id="resultHTTP"/>
<s:TextInput id="h_url" text="{url}" visible="false"/>
</s:VGroup>
</s:Scroller>
如您所见,屏幕右侧的垂直滚动条不可见。那么如何让它随时可见?
答案 0 :(得分:1)
请在你的卷轴上试试这个:
verticalScrollPolicy =“on”
<强>更新强>
尝试这个怎么样:
interactionMode="mouse"
)