在我的应用程序中,我有一个TextArea
,在其下面有一个包含Button
个项目的工具栏。每当按下Button
时,TextArea
失去焦点,并隐藏虚拟键盘(右侧)。但是,如果我希望TextArea
保持关注,即使已按下Button
该怎么办?
在SailfishOS中,Button
只是MouseArea
,而不是QML Button
。这意味着我无法将Button.activeFocusOnPress
设置为false
。有没有办法为MouseArea
复制此行为?
以下是一些代码:
TextArea {
id: editor
width: parent.width
height: 200
anchors.top: pageHeader.bottom
anchors.bottom: toolbar.top
}
ListModel {
id: textNavButtons
ListElement {buttonText: "left"}
ListElement {buttonText: "right"}
ListElement {buttonText: "tab"}
ListElement {buttonText: "home"}
ListElement {buttonText: "end"}
}
Row {
id: toolbar
anchors.bottom: parent.bottom
width: parent.width
height: 80
Repeater {
id: toolbarRepeater
model: textNavButtons
property int modelCount: model.count
delegate: Button {
text: buttonText
width: parent.width / toolbarRepeater.modelCount
onClicked: {
console.log("I was clicked: " + text);
}
}
}
}
编辑:我的目标是使用这些按钮在文本中插入标签,或者使用Home,End,Left,Right等进行导航。我不确定使用这些按钮是否能达到目标,但我没有其他的想法。我也必须模拟按键。