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. Android/ios image picker
Forum Updated to NodeBB v4.3 + New Features

Android/ios image picker

Scheduled Pinned Locked Moved QML and Qt Quick
14 Posts 7 Posters 6.9k Views 1 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.
  • A Offline
    A Offline
    AlterX
    wrote on 2 Sept 2014, 14:58 last edited by
    #1

    Hello,
    I am actively searching for a component or similar to be able to show picture within the smartphone and select one or more of those...
    I have searched a lot but nothing I found.
    Someone know a bit more or someone has already done something similar and want to share that?

    Thanks
    Gianni

    Qt Ambassador
    Real-time cooperative teams: http://www.softairrealfight.net
    Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

    https://codereview.qt-project.org/...

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 2 Sept 2014, 20:45 last edited by
      #2

      Hi,

      For iOS you can look at the QtDD 2013 iOS presentation code. There's the Objective-C code available.

      Hope it helps

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • A Offline
        A Offline
        AlterX
        wrote on 3 Sept 2014, 09:50 last edited by
        #3

        Hi,
        thank you so this code should work under Qt...and for android Do you know something or not?
        I didn't see any plan for this feature and it is very strange such lack in a mobile sdk!

        Qt Ambassador
        Real-time cooperative teams: http://www.softairrealfight.net
        Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

        https://codereview.qt-project.org/...

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 3 Sept 2014, 21:21 last edited by
          #4

          Yes it does. For Android, I haven't tested it but you would probably need to use JNI for the same thing (qandroidextras comes to mind)

          There's only so much people working on Qt and there are priorities they have to follow. Anyway it's something that might appear in the extras repository in the future :)

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • A Offline
            A Offline
            AlterX
            wrote on 4 Sept 2014, 06:25 last edited by
            #5

            Anyway I was not able to find ios code...

            Qt Ambassador
            Real-time cooperative teams: http://www.softairrealfight.net
            Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

            https://codereview.qt-project.org/...

            1 Reply Last reply
            0
            • G Offline
              G Offline
              Gianluca
              wrote on 4 Sept 2014, 19:07 last edited by
              #6

              For iOS you need to use UIImagePickerController, and because it's very easy to mix Qt C++ code with Objective-C code, just look with google on a tutorial for using UIImagePickerController and you can directly use that code.

              For Android the road it's a bit more difficult, this is my solution:

              • Create a custom android java Activity subclassing QtActivity, into the java class define some static method for constructing the necessary Intent:
                @
                public static Intent createChoosePhotoIntent() {
                Intent intent = new Intent( Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI );
                intent.setType("image/*");
                return Intent.createChooser(intent, "Select Image");
                }
                @

              • Create a C++ subclass of QAndroidActivityResultReceiver for getting the result of the Intent launched (in this case the images chosen):
                @
                class OnSelectPhotoResult : public QAndroidActivityResultReceiver {
                void handleActivityResult(int requestCode, int resultCode, const QAndroidJniObject & data) {
                qDebug() << "TOTAPE RETURNING FROM SELECT PHOTO - " << resultCode << " - " << requestCode;
                if ( resultCode == -1 ) {
                // OK !
                QAndroidJniObject imageUri = data.callObjectMethod(
                "getData",
                "()Landroid/net/Uri;");
                QAndroidJniObject imageFile = QAndroidJniObject::callStaticObjectMethod(
                "com/totape/app/TotapeActivity",
                "getPath",
                "(Landroid/net/Uri;)Ljava/lang/String;",
                imageUri.object<jobject>());
                Backend::instance()->photoReady( imageFile.toString() );
                }
                }
                };
                @
                In my code above, I use java methods to process the result, this because the returned data are java object, so you need to call java methods via JNI in order to extract information. For doing so, personally I prefer to create static method in the custom Activity in order to minimize the number of JNI calls

              • Launch the Intent from C++ with this code:
                @
                void Backend::selectPhoto() {
                QAndroidJniObject intent = QAndroidJniObject::callStaticObjectMethod(
                "com/totape/app/TotapeActivity",
                "createChoosePhotoIntent",
                "()Landroid/content/Intent;" );
                qDebug() << "STARTING INTENT FOR SELECTING A PHOTO";
                QtAndroid::startActivity( intent, 12051978, data->onSelectPhoto );
                }
                @

              That's it.
              This is my solution.

              M 1 Reply Last reply 18 Jun 2015, 20:24
              0
              • A Offline
                A Offline
                AlterX
                wrote on 5 Sept 2014, 06:42 last edited by
                #7

                Nice solotuion on Android...I was expecting something related to create my activity.

                Ok thanks,
                I will give a try to that.

                Qt Ambassador
                Real-time cooperative teams: http://www.softairrealfight.net
                Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

                https://codereview.qt-project.org/...

                1 Reply Last reply
                0
                • A Offline
                  A Offline
                  AlterX
                  wrote on 6 Sept 2014, 09:56 last edited by
                  #8

                  Hello thanks,
                  I am trying to create the code, but I don't understand what is
                  data->onSelectPhoto parameter in QtAndroid::startActivity() function.

                  Could you tell me a bit more about that?

                  Thanks
                  Gianni

                  Qt Ambassador
                  Real-time cooperative teams: http://www.softairrealfight.net
                  Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

                  https://codereview.qt-project.org/...

                  M 1 Reply Last reply 30 Apr 2015, 22:47
                  0
                  • A AlterX
                    6 Sept 2014, 09:56

                    Hello thanks,
                    I am trying to create the code, but I don't understand what is
                    data->onSelectPhoto parameter in QtAndroid::startActivity() function.

                    Could you tell me a bit more about that?

                    Thanks
                    Gianni

                    M Offline
                    M Offline
                    malleeswarareddy
                    wrote on 30 Apr 2015, 22:47 last edited by
                    #9

                    how to get the result from handleActivityResult virtual method ,when i select any action using android jni.

                    1 Reply Last reply
                    0
                    • G Gianluca
                      4 Sept 2014, 19:07

                      For iOS you need to use UIImagePickerController, and because it's very easy to mix Qt C++ code with Objective-C code, just look with google on a tutorial for using UIImagePickerController and you can directly use that code.

                      For Android the road it's a bit more difficult, this is my solution:

                      • Create a custom android java Activity subclassing QtActivity, into the java class define some static method for constructing the necessary Intent:
                        @
                        public static Intent createChoosePhotoIntent() {
                        Intent intent = new Intent( Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI );
                        intent.setType("image/*");
                        return Intent.createChooser(intent, "Select Image");
                        }
                        @

                      • Create a C++ subclass of QAndroidActivityResultReceiver for getting the result of the Intent launched (in this case the images chosen):
                        @
                        class OnSelectPhotoResult : public QAndroidActivityResultReceiver {
                        void handleActivityResult(int requestCode, int resultCode, const QAndroidJniObject & data) {
                        qDebug() << "TOTAPE RETURNING FROM SELECT PHOTO - " << resultCode << " - " << requestCode;
                        if ( resultCode == -1 ) {
                        // OK !
                        QAndroidJniObject imageUri = data.callObjectMethod(
                        "getData",
                        "()Landroid/net/Uri;");
                        QAndroidJniObject imageFile = QAndroidJniObject::callStaticObjectMethod(
                        "com/totape/app/TotapeActivity",
                        "getPath",
                        "(Landroid/net/Uri;)Ljava/lang/String;",
                        imageUri.object<jobject>());
                        Backend::instance()->photoReady( imageFile.toString() );
                        }
                        }
                        };
                        @
                        In my code above, I use java methods to process the result, this because the returned data are java object, so you need to call java methods via JNI in order to extract information. For doing so, personally I prefer to create static method in the custom Activity in order to minimize the number of JNI calls

                      • Launch the Intent from C++ with this code:
                        @
                        void Backend::selectPhoto() {
                        QAndroidJniObject intent = QAndroidJniObject::callStaticObjectMethod(
                        "com/totape/app/TotapeActivity",
                        "createChoosePhotoIntent",
                        "()Landroid/content/Intent;" );
                        qDebug() << "STARTING INTENT FOR SELECTING A PHOTO";
                        QtAndroid::startActivity( intent, 12051978, data->onSelectPhoto );
                        }
                        @

                      That's it.
                      This is my solution.

                      M Offline
                      M Offline
                      Mitchell
                      wrote on 18 Jun 2015, 20:24 last edited by
                      #10

                      @Gianluca Can you explain the code for the android work around a little more. I am confused about what Backend does as well as what files the code should be in. Such as making a c++ subclass as well as making a subclass of QtActivity.

                      thank you

                      1 Reply Last reply
                      0
                      • M Offline
                        M Offline
                        Mitchell
                        wrote on 22 Jun 2015, 18:59 last edited by
                        #11

                        In the QtAndroid::startActivity() function data->onSelectPhoto what is data? You don't have it defined anywhere. I have tried QAndroidJniObject and QAndroidActivityresultHandler but it says onSelectPhoto is not a member of these types. Any help would be great!!!

                        1 Reply Last reply
                        0
                        • A Offline
                          A Offline
                          amahta
                          wrote on 8 Dec 2015, 09:57 last edited by
                          #12

                          There is a workaround for getting images from Android Gallery. You can check this post for more info.

                          Thou shalt programme
                          http://www.amin-ahmadi.com

                          1 Reply Last reply
                          0
                          • A Offline
                            A Offline
                            AlterX
                            wrote on 9 Dec 2015, 09:58 last edited by
                            #13

                            Thanks for android I solved it. It is working very well.

                            Qt Ambassador
                            Real-time cooperative teams: http://www.softairrealfight.net
                            Free Real-time network platform sdk: https://github.com/AlterX76/Solomon

                            https://codereview.qt-project.org/...

                            1 Reply Last reply
                            0
                            • H Offline
                              H Offline
                              h00bs
                              wrote on 24 May 2019, 10:39 last edited by
                              #14

                              This is an old thread, but maybe still interesting. There is an (multi-) image picker component for Android and iOS available with Felgo: https://felgo.com/updates/release-3-2-0-qt-5-12-3-subscriptions

                              Developer at Felgo - https://felgo.com/qt

                              Develop mobile Apps for iOS & Android with Qt
                              Develop Games with Qt

                              Felgo is an official Qt Technology Partner

                              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