Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.5k Posts
  • Android notification don't appear

    Unsolved
    1
    0 Votes
    1 Posts
    416 Views
    No one has replied
  • Application development on iPad Pro

    Unsolved
    3
    0 Votes
    3 Posts
    969 Views
    SPlattenS
    Thank you, I will take a look.
  • Force Screen Orientation on Android

    Solved
    5
    0 Votes
    5 Posts
    3k Views
    M
    Thanks seyed, your solution is working, but i had to modify it slightly as it was giving me a compile error on this line QAndroidJniObject activity = QAndroidJniObject::callStaticObjectMethod("org/qtproject/qt5/android/QtNative", "activity", "()Landroid/app/Activity;"); So I changed it with this: QAndroidJniObject activity = QtAndroid::androidActivity(); And it is working perfectly Thanks everybody for the help
  • iOS look and feel for embedded QT

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    SGaistS
    You're welcome :) But… Did you find the answer you were looking for ?
  • Not able do use a different font for the Application

    Unsolved
    2
    0 Votes
    2 Posts
    625 Views
    P
    Are you trying to set a default font to your Qt application ? Then try this, int loadedFontID = QFontDatabase::addApplicationFont("<Your custom font pathname (TTF/PFA/PFB/BDF/QPF)>"); QStringList loadedFontFamilies = QFontDatabase::applicationFontFamilies(loadedFontID); fontName = loadedFontFamilies.value(0); QFont font; font.setFamily(fontName); app.setFont(font);
  • QTableView Vertical scroll bar speed

    Unsolved
    5
    0 Votes
    5 Posts
    2k Views
    K
    Thanks for the answers Sam!
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    35 Views
    No one has replied
  • iOS compiling error: qchar.h:45:1: error: unknown type name 'QT_BEGIN_NAMESPACE'

    Solved
    10
    0 Votes
    10 Posts
    5k Views
    SGaistS
    Dangerous file name indeed ! Glad you found out and thanks for sharing :)
  • Problem with QT4 and gnuradio

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, Are you using PyQt or PySide ? AFAIK, the version of Qt has no influence with your problem. You're likely getting an invalid value for the geometry property from your QSettings object. Did you save that property once ?
  • Connection to Bluetooth Device With SPP that requires a PIN Code

    Unsolved
    2
    1 Votes
    2 Posts
    908 Views
    MIrchhhM
    if I pair my bluetooth device from raspian. btscanner shows they were paired. But when I try to connect it it gives a new error. :) qt.bluetooth.bluez: void QBluetoothSocketPrivate::_q_readNotify() 15 error: -1 "Resource temporarily unavailable" QT, Linux, Raspberry have lots of problems for every steps:) If someone can solve problem above, I have this problem in the next step:)
  • QNetworkConfigurationManager::capabilities() returning empty QFlags

    Unsolved
    10
    0 Votes
    10 Posts
    3k Views
    SGaistS
    What did you change ?
  • Qt and directFB: QDirectFBScreen::createDFBSurface() Failed!

    Unsolved directfb webview dfb 1.4.3 qt 4.6.3
    4
    0 Votes
    4 Posts
    2k Views
    McLionM
    @SGaist Thanks.
  • Problem in While loop

    Unsolved qt c++ embedded qt websocketserver grid encoder
    2
    0 Votes
    2 Posts
    2k Views
    RajeeshRaveendranR
    Hi, there are 2 possible cases: If you are sure that void DistanceThread::run() exit after first iteration then you are setting "flagforbreak" or "diststop" in between. So could you please check the slots of those signals which you are emitting? (May be the flag set from there). DistanceThread::run() is still executing but your conditions (i saw complex nested "If"s there :) ) may not meet anytime.(Hope U will debug it ensure that. Regards, Rajeesh Raveendran
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    20 Views
    No one has replied
  • QWebview and omxplayer on RasPi

    Solved omxplaye raspberry pi
    2
    0 Votes
    2 Posts
    2k Views
    liewjlsL
    I moved to QT 5.5 and it works prefectly when i have another process triggered the oxmplayer which it is running underneath of my applicatioin. thanks.
  • QtMedia support loudspeaker on mobile(Android, iOS)

    Solved
    3
    0 Votes
    3 Posts
    610 Views
    kd_walaK
    @SGaist ,Thank you, I call to java native via jni, and it work for me.
  • Resize layout created in Qt for Android.

    Solved android qt 5.7 application
    7
    0 Votes
    7 Posts
    3k Views
    QojoteQ
    You can set the sizePolicy of each element in a layout. Typically a button has a fixed vertical size and an expanding horizontal size (dont get confused with "minimum" and "expanding" size policy). Maybe it is useful to take the Qt creator and create a simple application and play around with layouts...
  • Build error with armeaby-v7a.

    Unsolved
    2
    0 Votes
    2 Posts
    484 Views
    kd_walaK
    I think you need give more output error,
  • open andorid app from Qt android App

    Unsolved
    2
    0 Votes
    2 Posts
    713 Views
    kd_walaK
    As I know, you can't do it in Qt C++, you need using JNI to call from C++ to Java and vice versa, Here is link to start http://doc.qt.io/qt-5/android-support.html
  • 0 Votes
    1 Posts
    835 Views
    No one has replied