Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
13.9k Topics 61.7k Posts
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • Can I develop for Amazon Fire tablet?

    Unsolved
    3
    1 Votes
    3 Posts
    129 Views
    J.HilkJ

    yes and no,

    a simple Hello World Qt program should work out of the box and without much trouble.

    But FireOS does not have access to Google Play Services and requires other specific modifications. For example changes in the AndroidManifest files for e.g. permissions.

    But it is a version of android, so you should be able to change specifics in your project and build scripts to make adjustments as needed. There's no guarantee that it will work out of the box, but nothing a documentation and access to internet won't be able to solve :D

  • install tslib on the ubuntu 18.04

    Solved
    2
    0 Votes
    2 Posts
    128 Views
    SGaistS

    Hi,

    By getting a tslib built for arm since it's your target.

  • 0 Votes
    3 Posts
    428 Views
    D

    @gregory109 I tried:

    QtJniTypes::Context context = QNativeInterface::QAndroidApplication::context(); m_javaObject = QJniObject("org/qtproject/qt/android/purchasing/InAppPurchase", "(Landroid/content/Context;J)V", context, this);

    but it did not help. Looks like QtJniTypes::Context is not a trivial type defined with Q_DECLARE_JNI_CLASS(Context, "android/content/Context").

  • QT_CONFIG undefined error

    Solved
    3
    0 Votes
    3 Posts
    130 Views
    A

    I have solved this problem using the example of the qt 4.8.5.
    It was the version mismatching problem.
    Thanks

  • Android Return key hides keyboard bug

    Unsolved
    8
    1 Votes
    8 Posts
    244 Views
    ekkescornerE

    @Michel-de-Boer said in Android Return key hides keyboard bug:

    My biggest issue with Qt6.7.2 is that all movements, e.g. scrolling and drawers popping up, are very jittery. It's like there is a vibration in the movement. Do you see that too?

    have no problems yet, but I'm on 6.7.1

    thx creating the issue. voted...

  • Android "PlainTextField UI Problem"

    Unsolved
    1
    0 Votes
    1 Posts
    67 Views
    No one has replied
  • Android auto uppercase broken in Qt6.7.2

    Unsolved
    1
    0 Votes
    1 Posts
    55 Views
    No one has replied
  • 0 Votes
    1 Posts
    113 Views
    No one has replied
  • QT5 camera video record only once.

    Unsolved
    21
    0 Votes
    21 Posts
    890 Views
    SGaistS

    You should check these logs when the freeze happens

  • Qt6.7.2 and Android bad scrolling/movement

    Unsolved
    1
    0 Votes
    1 Posts
    103 Views
    No one has replied
  • Signature Capture

    Solved
    2
    0 Votes
    2 Posts
    65 Views
    jsulmJ

    @Andy117 What about https://doc.qt.io/qt-5/qtwidgets-touch-fingerpaint-example.html ?

  • configure option for the ARM cross compile

    Solved
    2
    0 Votes
    2 Posts
    88 Views
    jsulmJ

    @Andy117 said in configure option for the ARM cross compile:

    But the "QtWidgets" include file is not created

    See https://stackoverflow.com/questions/23979798/include-qtwidgets-not-working-in-qt-4

    You also should consider doing out of source builds (not inside the source folder).

  • Changing camera capture mode not working.

    Solved
    2
    0 Votes
    2 Posts
    76 Views
    jsulmJ

    @Bonty Why don't you use https://doc.qt.io/qt-6/qimagecapture.html#captureToFile if you want to capture to a file?
    Else you have to store the captured image data to a file.

  • parse a json file

    Unsolved
    2
    0 Votes
    2 Posts
    126 Views
    SGaistS

    Hi,

    How are you passing that file to nlohmann's library ?
    If you try to pass it the path to the QRC file, then it won't work as non Qt libraries don't know how to access such resources.
    You need to either copy the file to a temporary path or load it to a buffer and pass that further.

    Note that Qt also has JSON support.

  • How can I create a card using Qt for the phone

    Locked Unsolved
    2
    0 Votes
    2 Posts
    85 Views
    JonBJ

    @Clovr
    Duplicate:
    https://forum.qt.io/topic/157322/how-can-i-create-a-card-using-qt-for-the-phone

    Please don't create duplicates of existing posts. Someone already replied to your previous, telling you that you would have to implement it yourself. Or maybe you would be best using QML, I don't know. If anybody has anything else to add they would do so there.

  • How to hide mouse cursor while running application?

    Solved
    7
    0 Votes
    7 Posts
    309 Views
    B

    Thanks @SGaist

    Transparent image by QPixmap is working.

  • Android 8 (API 26) dosnt start.

    Unsolved
    1
    0 Votes
    1 Posts
    44 Views
    No one has replied
  • QMediaPlayer playing very slow or low frame rate.

    Solved
    3
    1 Votes
    3 Posts
    156 Views
    B

    Thanks @SGaist

    qtvideosink solved my problem.

  • 0 Votes
    4 Posts
    142 Views
    SGaistS

    Which version of Qt are you deploying ?