Qt/QML/Android(navigation button) - Стандартные клавиши навигации Андроид
Здравствуйте, пытаюсь заставить работать стандартную андроид-клавишу "назад", пытался разными способоами, они приведены в закомментированном коде. В том числе использовал https://evileg.com/ru/forum/topic/826/, но ни чего не помогло. ОС Fedora 33 QtCreator 6.
В моем примере кода работает BackButton, при ее нажатии вызывается метод pop() StackView id: testsPageStackView. И данная страница id: firstClassPage, код которой приведен ниже, удаляется из StackView id: testsPageStackView. То же самое должно происходить и при нажатии навигационной кнопки Андроида, но приложение просто закрывается.
Вот мой код:
import QtQuick 2.12 import QtQuick.Controls 2.12 Page { id: firstClassPage anchors.fill: parent BackButton { height: parent.height / 13 width: height anchors.top: parent.top anchors.left: parent.left onClicked: { testsPageStackView.pop() } } focus: true Action { shortcut: StandardKey.Back onTriggered: testsPageStackView.pop(); } // ////***************************************************************************************** // //Coponent.onCompleted: { // firstClassPage.Keys.released.connect(function(event) { // if (event.key === StandardKey.Back) { // event.accepted = true // testsPageStackView.pop(); // } // }) // } // ////***************************************************************************************** // // Keys.onPressed: { // if (event.key === StandardKey.Back) { // testsPageStackView.pop() // event.accepted = false; // } // } // ////***************************************************************************************** // //Keys.onReleased: { // if (event.matches(StandardKey.Back)) { // testsPageStackView.pop(); // event.accepted = false; // } // } // ////***************************************************************************************** // //Keys.onBackPressed: { // testsPageStackView.pop(); // close.accepted = true; //} }
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
- Akiv Doros
- Nov. 12, 2024, 3:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
- molni99
- Oct. 26, 2024, 1:37 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
- molni99
- Oct. 26, 2024, 1:29 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10