Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.2k Topics 62.7k Posts
  • Is there a way to set the sensitivity of touch events in qt? Android issue

    Unsolved
    1
    0 Votes
    1 Posts
    303 Views
    No one has replied
  • Close Qml-Part and let the QWidget-App running

    Unsolved
    4
    0 Votes
    4 Posts
    483 Views
    J.HilkJ
    @peter-70 for(QObject *obj : engine.rootObjects()){ engine.rootObjects().removeOne(obj); obj->deleteLater(); } engine.clearComponentCache();
  • When the use qtmultimedia play video,then it happen Internal data stream error.

    Unsolved
    2
    0 Votes
    2 Posts
    461 Views
    Cleiton BuenoC
    @dino_huang said in When the use qtmultumedia play video,then it happen Internal data stream error.: It always happen Internal data stream error,when use qt player. Post the error or exception here. Cleiton Bueno Blog | Linkedin | B2Open
  • QT Webbrowser for Enigma 2 Satellitereceiver

    Unsolved
    7
    0 Votes
    7 Posts
    2k Views
    B
    Can you please give me a hint how I can install the QT-Webengine in HD51 with which tool and a small Regards
  • Strange QDateEdit behavior

    Unsolved
    3
    0 Votes
    3 Posts
    534 Views
    N
    It's a proprietary device. This is the only app that runs on it. I should note that I have the same problem with QComboBox.
  • QML Text letterSpacing not working on raspberry pi 3 (EGLFS)

    Solved
    5
    1 Votes
    5 Posts
    911 Views
    etiennedmE
    Ok. I "found" the issue. After recompiling Qt with different versions / compilers, I found that was... my USB Mouse ! I have always tested with a USB mouse plugged in the raspi. Removing it before launching the program fixes the issue. Does someone have any idea why ? It seems to conflict with I don't know which library, but if someone has a clue, I'm very interested in ! Thank you ! Etienne PS : I let the thread opened for a few days, in case someone can help on the reason of this issue
  • V-play project for android build fail

    Unsolved
    3
    0 Votes
    3 Posts
    694 Views
    A
    @gotronics said in V-play project for android build fail: No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android This means you don't have a toolchain installed with your android developer kit that can handle the mips64el target. You need to install that if you want to target that particular architecture. I don't know anything about vplay to know if it truly needs that or if it can be built without it or not, that's a good question for them. :)
  • Could not play media via Qmediaplayer.

    Unsolved
    1
    0 Votes
    1 Posts
    339 Views
    No one has replied
  • How to make my widget in a center of the mainwindow?

    Solved
    4
    0 Votes
    4 Posts
    632 Views
    SGaistS
    Hi, Wouldn't QStackedWidget be a simpler solution ?
  • Build error when use V-player

    Unsolved
    2
    0 Votes
    2 Posts
    508 Views
    SGaistS
    Hi, You should contact the VPlay folks on their forum.
  • FTDI with Android (Odroid XU4)

    Solved
    13
    0 Votes
    13 Posts
    3k Views
    CaktozzC
    Thank you for all who gave answers and who read this topic. May be useful follow this link : FTDI
  • Password Storing

    Solved
    10
    0 Votes
    10 Posts
    3k Views
    Bhushan_SureB
    @dheerendra okay sir 😊😊
  • Project ERROR: This mkspec requires Xcode 4.3 or later

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    SGaistS
    The quick and dirty way is to disable the test in the corresponding mkspec.
  • MediaPlayer not works

    Unsolved
    6
    0 Votes
    6 Posts
    783 Views
    Bhushan_SureB
    Have you installed codec software ? Like i was also facing problem while making video player using Qt, but then i installed Codec then my program worked 😊
  • Android Kit not configured

    Solved
    3
    0 Votes
    3 Posts
    543 Views
    G
    @koahnig thank you I did as you advised me problem solved
  • QQuickWidget not functioning on Android

    9
    0 Votes
    9 Posts
    3k Views
    ivandI
    Thank you for your post. I lost my day with this problem on Qt 5.11.1 today. I can't believe it.
  • translucent app on top of the Dialer

    Unsolved
    1
    0 Votes
    1 Posts
    235 Views
    No one has replied
  • Qt 5.9.1 crosscompile on raspberry Pi 3

    Solved
    13
    0 Votes
    13 Posts
    7k Views
    jsulmJ
    @rolando.esq You did not post the actual error which is somewhere before the lines you posted.
  • Where is the documentation for android development?

    Unsolved
    3
    0 Votes
    3 Posts
    440 Views
    SGaistS
    Hi, Likely a typo somewhere. You can find that example here.
  • QtAndroid local notifications , notifications poping up immediately

    Unsolved jni android qt5.5 java jni java
    2
    0 Votes
    2 Posts
    1k Views
    raven-worxR
    @Qjay said in QtAndroid local notifications , notifications poping up immediately: the notifications are popping up almost instantly ( despite me providing time for it ). you pass the time you want it to be triggered from now on. The API expects a time since EPOCH (as your comment in the code also states) which are the milliseconds from 1970/01/01 on. So in your JAVA code add new Date().getTime() milliseconds to your current timeout. So far i am able to get the notifications ( but not on Android O ) did you read this already? Alos chekc the Qt debugger console and/or LogCat for suspicious messages regarding notifications.