Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-21572

Impossible to scroll to the top/bottom in Flickable element when VKB is open.

    XMLWordPrintable

Details

    Description

      Steps to reproduce
      • Case 1
        1. open the sample app (TestFlickable.sis)
        2. tap on the first item i.e. 0 -> partial VKB opens
        3. while the VKB is open, try to scroll the list to the bottom
      • Case 2
        1. open the sample app (TestFlickable.sis)
        2. scroll to the bottom and tap on the last item i.e. 29 -> partial VKB opens
        3. while the VKB is open, try to scroll the list to the top
      Actual Result
      • it's impossible to scroll to the top/bottom
      Expected Result
      • it's possible to scroll to the top/bottom
      Source code
      // main.qml
      import QtQuick 1.0
      
      Flickable {
          id: flickableArea
          contentWidth: contentItem.childrenRect.width; contentHeight: contentItem.childrenRect.height
          flickableDirection: Flickable.VerticalFlick
          Column {
              Repeater {
                  model: 30
                  Rectangle {
                      width: flickableArea.width; height: 50
                      color: index % 2 ? "white" : "grey"
                      TextInput {
                          anchors.centerIn: parent
                          text: index
                          color: "black"
                          font.pointSize: 16
                      }
                  }
              }
          }
      }
      
      // main.cpp
      // add this line in e.g. main() so that it uses the partial VKB
      QApplication::setAttribute(Qt::AA_S60DisablePartialScreenInputMode, false);
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            kallneva kalle nevala
            matsumot Tadaaki Matsumoto
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes