0
我的應用程序中有Web視圖,ActionBar隱藏了Webview的底部部分。我可以做什麼來使我的WebView適合Action Bar上方的屏幕?ActionBar隱藏WebView。如何更改WebView的大小以避免隱藏
這裏是我的QML片段:
WebView {
id: webViewObj
visible: true
verticalAlignment: VerticalAlignment.Fill
horizontalAlignment: HorizontalAlignment.Fill
settings.viewport: {
"width": "device-width",
"height": "device-height",
"initial-scale": 1.0
}
...
}
這將是一個好主意,但我已經在我的WebView滾動功能,我把我的WebView放在一個不滾動的容器中。正因爲如此,我不能使用ActionBarAutoHideBehavior – Igor