跳到內容
  • 版面
  • 最新
  • 標籤
  • 熱門
  • 使用者
  • 群組
  • 搜尋
  • Get Qt Extensions
  • Unsolved
Collapse
品牌標誌
  1. 首頁
  2. Qt Development
  3. Mobile and Embedded
  4. How to send SMS in android?
Forum Updated to NodeBB v4.3 + New Features

How to send SMS in android?

已排程 已置頂 已鎖定 已移動 Mobile and Embedded
36 貼文 12 Posters 6.4k 瀏覽 3 Watching
  • 從舊到新
  • 從新到舊
  • 最多點贊
回覆
  • 在新貼文中回覆
登入後回覆
此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
  • M 離線
    M 離線
    Mikeeeeee
    寫於 最後由 編輯
    #1

    Hi!
    How to send SMS in android?

    1 條回覆 最後回覆
    0
    • SGaistS 離線
      SGaistS 離線
      SGaist
      Lifetime Qt Champion
      寫於 最後由 編輯
      #2

      Hi,

      Did you try to look up the Android API ? A quick search turns out SmsManager.

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

      1 條回覆 最後回覆
      2
      • M 離線
        M 離線
        Mikeeeeee
        寫於 最後由 編輯
        #3

        How in Qt to connect to the Android API and use some function, for example createAppSpecificSmsToken (PendingIntent intent)?

        1 條回覆 最後回覆
        0
        • K 離線
          K 離線
          kuzulis
          Qt Champions 2020
          寫於 最後由 編輯
          #4

          Use Qt Android Extras helpers. Also you can read about here (from first to last episode).

          1 條回覆 最後回覆
          2
          • Shrinidhi UpadhyayaS 離線
            Shrinidhi UpadhyayaS 離線
            Shrinidhi Upadhyaya
            寫於 最後由 編輯
            #5

            @Mikeeeeee , you can write a java class which contains the function to send the sms, and after that you can use the QtAndroid and QAndroidJniEnvironment in your cpp class and call the function defined in your java class.
            Something like this:-

            QtAndroid::androidActivity().callMethod<void>("sendSMS");
            

            I had used "textLocal" (sms platform) in a project i was working on and it worked really nice, so they have few API's which you can make use of.If you want the code for that please have a look at this[http://api.textlocal.in/docs/sendsms].

            For more information about QtAndroid[https://doc.qt.io/qt-5/qtandroid.html] and QAndroidJniEnvironment[https://doc.qt.io/qt-5/qandroidjnienvironment.html]

            Shrinidhi Upadhyaya.
            Upvote the answer(s) that helped you to solve the issue.

            1 條回覆 最後回覆
            3
            • M 離線
              M 離線
              Mikeeeeee
              寫於 最後由 Mikeeeeee 編輯
              #6

              If I add QT + = androidextras, I get an error: Unknown module (s) in QT: androidextras

              1 條回覆 最後回覆
              0
              • Shrinidhi UpadhyayaS 離線
                Shrinidhi UpadhyayaS 離線
                Shrinidhi Upadhyaya
                寫於 最後由 編輯
                #7

                Hi @Mikeeeeee , you need to add like this:-

                android: QT += androidextras
                

                Shrinidhi Upadhyaya.
                Upvote the answer(s) that helped you to solve the issue.

                1 條回覆 最後回覆
                3
                • M 離線
                  M 離線
                  Mikeeeeee
                  寫於 最後由 編輯
                  #8

                  In .pro the file was compiled. If I add #include <Qt Android Extras> I get errors: 'QtAndroidExtras' file not found , QtAndroidExtras: No such file or directory
                  #include <QtAndroidExtras>

                  1 條回覆 最後回覆
                  0
                  • SGaistS 離線
                    SGaistS 離線
                    SGaist
                    Lifetime Qt Champion
                    寫於 最後由 編輯
                    #9

                    Might be a silly question but are you building that with your Qt Android kit ?

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

                    1 條回覆 最後回覆
                    0
                    • M 離線
                      M 離線
                      Mikeeeeee
                      寫於 最後由 編輯
                      #10

                      MinGW does not compile, Clang compiles. Thanks.

                      1 條回覆 最後回覆
                      0
                      • SGaistS 離線
                        SGaistS 離線
                        SGaist
                        Lifetime Qt Champion
                        寫於 最後由 編輯
                        #11

                        That has nothing to do with your error. You were using a Qt build that was not for Android, likely your desktop build.

                        MinGW is unrelated to the Qt Android version. The compiler is provided by the Android NDK.

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

                        1 條回覆 最後回覆
                        2
                        • M 離線
                          M 離線
                          Mikeeeeee
                          寫於 最後由 編輯
                          #12

                          How to call a method in Qt from java SmsManager::createAppSpecificSmsTokenWithPackageinfo(String prefixes, PendingIntent intent)

                          jsulmJ 1 條回覆 最後回覆
                          0
                          • M Mikeeeeee

                            How to call a method in Qt from java SmsManager::createAppSpecificSmsTokenWithPackageinfo(String prefixes, PendingIntent intent)

                            jsulmJ 離線
                            jsulmJ 離線
                            jsulm
                            Lifetime Qt Champion
                            寫於 最後由 編輯
                            #13

                            @Mikeeeeee Take a look at https://doc.qt.io/qt-5/qandroidjniobject.html

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 條回覆 最後回覆
                            1
                            • M 離線
                              M 離線
                              Mikeeeeee
                              寫於 最後由 編輯
                              #14

                              Will this option work, or should we do it differently?

                                  QAndroidJniObject testSms;
                                  testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                              
                              Pablo J. RoginaP JonBJ 2 條回覆 最後回覆
                              0
                              • M Mikeeeeee

                                Will this option work, or should we do it differently?

                                    QAndroidJniObject testSms;
                                    testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                                
                                Pablo J. RoginaP 離線
                                Pablo J. RoginaP 離線
                                Pablo J. Rogina
                                寫於 最後由 編輯
                                #15

                                @Mikeeeeee said in How to send SMS in android?:

                                Will this option work

                                Have you already tried? Trial and error is a way to learn...

                                Upvote the answer(s) that helped you solve the issue
                                Use "Topic Tools" button to mark your post as Solved
                                Add screenshots via postimage.org
                                Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                                1 條回覆 最後回覆
                                2
                                • M 離線
                                  M 離線
                                  Mikeeeeee
                                  寫於 最後由 編輯
                                  #16

                                  It doesn't work. How can this be fixed to work?

                                  1 條回覆 最後回覆
                                  0
                                  • M Mikeeeeee

                                    Will this option work, or should we do it differently?

                                        QAndroidJniObject testSms;
                                        testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                                    
                                    JonBJ 線上
                                    JonBJ 線上
                                    JonB
                                    寫於 最後由 JonB 編輯
                                    #17

                                    @Mikeeeeee

                                        QAndroidJniObject testSms;
                                        testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                                    

                                    With the warning that I know absolutely nothing about this:

                                    You are using the overload https://doc.qt.io/qt-5/qandroidjniobject.html#callMethod, callMethod(const char *methodName). It may well be that methodName has to be a method name, "createAppSpecificSmsTokenWithPackageInfo(32133)" is a full function call. You may have to use overload https://doc.qt.io/qt-5/qandroidjniobject.html#callMethod-1, callMethod(const char *methodName, const char *sig, ...), and specify the function signature and pass 32133 as parameter, in order to call functions with parameters?

                                    Have you/can you test if you can call a method which does not take any parameters, does that work OK?

                                    1 條回覆 最後回覆
                                    2
                                    • M 離線
                                      M 離線
                                      Mikeeeeee
                                      寫於 最後由 編輯
                                      #18

                                      The SmsManager class has a getcarrierconfigvalues() function without an argument.
                                      This code also generates an error:

                                          QAndroidJniObject testSms;
                                          testSms.callMethod< jint > ("getCarrierConfigValues()");
                                      
                                      jsulmJ JonBJ 2 條回覆 最後回覆
                                      0
                                      • M Mikeeeeee

                                        The SmsManager class has a getcarrierconfigvalues() function without an argument.
                                        This code also generates an error:

                                            QAndroidJniObject testSms;
                                            testSms.callMethod< jint > ("getCarrierConfigValues()");
                                        
                                        jsulmJ 離線
                                        jsulmJ 離線
                                        jsulm
                                        Lifetime Qt Champion
                                        寫於 最後由 編輯
                                        #19

                                        @Mikeeeeee said in How to send SMS in android?:

                                        generates an error

                                        Please post the error

                                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        1 條回覆 最後回覆
                                        1
                                        • M 離線
                                          M 離線
                                          Mikeeeeee
                                          寫於 最後由 編輯
                                          #20

                                          "org.qt project.example.smsTest" crashed.

                                          jsulmJ KroMignonK 2 條回覆 最後回覆
                                          0

                                          • 登入

                                          • Login or register to search.
                                          • 第一個貼文
                                            最後的貼文
                                          0
                                          • 版面
                                          • 最新
                                          • 標籤
                                          • 熱門
                                          • 使用者
                                          • 群組
                                          • 搜尋
                                          • Get Qt Extensions
                                          • Unsolved