Qt/QML/Android(navigation button)

Можно обрабатывать back кнопку так как работает кнопка home? Если можно то как?? Это нужно обрабатываться через JNI? Буду благодарен за любую помощь.

We recommend hosting TIMEWEB
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!

3
Evgenii Legotckoi
  • Feb. 12, 2019, 1:40 a.m.
  • The answer was marked as a solution.

Нет, JNI тут не потребуется, по моему мнению.

Ну вот один возможный вариант

Rectangle {
focus: true // important - otherwise we'll get no key events

Keys.onReleased: {
    if (event.key == Qt.Key_Back) {
        console.log("Back button captured - wunderbar !")
        event.accepted = true
    }
}
}

вот второй

ApplicationWindow 
{
  onClosing: {
    close.accepted = false
    if (contextMenuManager.menuVisible)
        contextMenuManager.menuVisible = false
  }
}

и третий

import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Layouts 1.1

ApplicationWindow {
id: appWindow
visible: true
width: 640
height: 480
title: qsTr("Hello World")

ListModel {
    id: longModel

    Component.onCompleted: {
        for ( var i=1; i<=100; i++ )
            append({"testName": i})
    }
}


ListView {
    anchors.fill: parent
    id: listView
    model: longModel

    delegate:
        Rectangle {
            height: 80
        width: parent.width

        Text {
            id: textComponent
            text: testName
        }
        Keys.onReleased: {
            if (event.matches(StandardKey.Back)) {
                console.log("back caught by delegate");
                event.accepted = true;
            }
        }
    }

    focus: true
    Keys.onReleased: {
        if (event.matches(StandardKey.Back)) {
            console.log("back caught by listview");
            event.accepted = true;
        }
    }

}
}

    Когда мы пишем event.accepted = true это значит шо твоя application на закрывается а дальше работает на foreground, но мой вопрос в другом можно чтоб кнопка назад не убивала application, а сделала minimize??

      Evgenii Legotckoi
      • Feb. 12, 2019, 5:10 a.m.
      • (edited)

      но мой вопрос в другом можно чтоб кнопка назад не убивала application, а сделала minimize??

      Вам следовало бы сразу соответствующим образом сформулировать вопрос. Разработчики приложения в итоге решают, как поступать и дефолтное поведение может быть переопределено. Есть приложения в которых вообще происходит logout клиента и ничего больше.

      Думаю, что тут уже нужно копать в сторону JNI, с фоновой работой всё обстоит несколько сложнее. Требуются настройки AndroidManifest. Здесь не подскажу.

        Comments

        Only authorized users can post comments.
        Please, Log in or Sign up
        AD

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:50points,
        • Rating points-4
        m

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:80points,
        • Rating points4
        m

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:20points,
        • Rating points-10
        Last comments
        i
        innorwallNov. 15, 2024, 2:30 p.m.
        Qt/C++ - Lesson 065. The correspondence of HTTP errors to server response errors in QNetworkAccessManager s Midsummer Classic in Kansas City priligy online pharmacy
        i
        innorwallNov. 15, 2024, 1:44 p.m.
        Qt/C++ - Lesson 039. How to paint stroke in QSqlTableModel by value in the column? Many OPKs would advise users to start using the test strips around day 9 of your cycle, considering day 1 to be the first day of full menstrual flow buy priligy australia
        i
        innorwallNov. 15, 2024, 10:27 a.m.
        Release of C++/Qt and QML application deployment utility CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
        i
        innorwallNov. 15, 2024, 5:26 a.m.
        Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
        i
        innorwallNov. 15, 2024, 3:03 a.m.
        Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
        Now discuss on the forum
        t
        tonypeachey1Nov. 15, 2024, 2:04 p.m.
        google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
        i
        innorwallNov. 15, 2024, 1:50 p.m.
        добавить qlineseries в функции priligy for sale Gently flush using an ear syringe
        i
        innorwallNov. 11, 2024, 6:55 p.m.
        Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
        9
        9AnonimOct. 25, 2024, 4:10 p.m.
        Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

        Follow us in social networks