Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. How to copy/paste in a TextField?
Forum Updated to NodeBB v4.3 + New Features

How to copy/paste in a TextField?

Scheduled Pinned Locked Moved Solved QML and Qt Quick
5 Posts 2 Posters 1.5k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • BlasterB Offline
    BlasterB Offline
    Blaster
    wrote on last edited by Blaster
    #1

    I am working on an android application. In it I use several text fields for the entry of different data, but in none of them I am allowed to copy / paste. I do long press, but nothing happens. What I can do?
    This is the code of my TextFields:

    TextField {
                    id: textField
                    Layout.fillWidth: true
                    verticalAlignment: TextInput.AlignVCenter
                    horizontalAlignment: TextInput.AlignHCenter
                    placeholderText: "Some Text"
                    anchors.horizontalCenter: parent.horizontalCenter
                }
    

    How can I make the next button to pass the next text field on the android virtual keyboard?

    ekkescornerE 2 Replies Last reply
    0
    • BlasterB Blaster

      I am working on an android application. In it I use several text fields for the entry of different data, but in none of them I am allowed to copy / paste. I do long press, but nothing happens. What I can do?
      This is the code of my TextFields:

      TextField {
                      id: textField
                      Layout.fillWidth: true
                      verticalAlignment: TextInput.AlignVCenter
                      horizontalAlignment: TextInput.AlignHCenter
                      placeholderText: "Some Text"
                      anchors.horizontalCenter: parent.horizontalCenter
                  }
      

      How can I make the next button to pass the next text field on the android virtual keyboard?

      ekkescornerE Offline
      ekkescornerE Offline
      ekkescorner
      Qt Champions 2016
      wrote on last edited by
      #2

      @Blaster said in How to copy/paste in a TextField?:

      How can I make the next button to pass the next text field on the android virtual keyboard?

      this should do what you want:
      Keys.onReturnPressed: myNextTextField.forceActiveFocus()

      ekke ... Qt Champion 2016 | 2024 ... mobile business apps
      5.15 --> 6.9 https://t1p.de/ekkeChecklist
      QMake --> CMake https://t1p.de/ekkeCMakeMobileApps

      1 Reply Last reply
      0
      • BlasterB Blaster

        I am working on an android application. In it I use several text fields for the entry of different data, but in none of them I am allowed to copy / paste. I do long press, but nothing happens. What I can do?
        This is the code of my TextFields:

        TextField {
                        id: textField
                        Layout.fillWidth: true
                        verticalAlignment: TextInput.AlignVCenter
                        horizontalAlignment: TextInput.AlignHCenter
                        placeholderText: "Some Text"
                        anchors.horizontalCenter: parent.horizontalCenter
                    }
        

        How can I make the next button to pass the next text field on the android virtual keyboard?

        ekkescornerE Offline
        ekkescornerE Offline
        ekkescorner
        Qt Champions 2016
        wrote on last edited by
        #3

        @Blaster said in How to copy/paste in a TextField?:

        I am working on an android application. In it I use several text fields for the entry of different data, but in none of them I am allowed to copy / paste. I do long press, but nothing happens. What I can do?

        works for me
        what Android Version ?
        Device ?
        your virtual keyboard ? (I'm using BlackBerry Keyboard for Android)

        ekke ... Qt Champion 2016 | 2024 ... mobile business apps
        5.15 --> 6.9 https://t1p.de/ekkeChecklist
        QMake --> CMake https://t1p.de/ekkeCMakeMobileApps

        BlasterB 1 Reply Last reply
        0
        • ekkescornerE ekkescorner

          @Blaster said in How to copy/paste in a TextField?:

          I am working on an android application. In it I use several text fields for the entry of different data, but in none of them I am allowed to copy / paste. I do long press, but nothing happens. What I can do?

          works for me
          what Android Version ?
          Device ?
          your virtual keyboard ? (I'm using BlackBerry Keyboard for Android)

          BlasterB Offline
          BlasterB Offline
          Blaster
          wrote on last edited by
          #4

          @ekkescorner said in How to copy/paste in a TextField?:

          @Blaster said in How to copy/paste in a TextField?:

          I am working on an android application. In it I use several text fields for the entry of different data, but in none of them I am allowed to copy / paste. I do long press, but nothing happens. What I can do?

          works for me
          what Android Version ?
          Device ?
          your virtual keyboard ? (I'm using BlackBerry Keyboard for Android)

          My intentions are that the next button appears in the virtual keyboard, but that would work for me. I am developing it from android 4.4, that is, API 19 .. thanks ... right now I'm testing it.

          1 Reply Last reply
          0
          • BlasterB Offline
            BlasterB Offline
            Blaster
            wrote on last edited by
            #5

            Can someone tell me how to copy and paste?

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved