Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.6k Posts
  • Send email using default mail client /gmail in Android

    4
    0 Votes
    4 Posts
    4k Views
    G
    Thank you very much Khachatur and nando76. This solved my problem! Thanks!
  • QGLWidget child class not be added into Layout

    1
    0 Votes
    1 Posts
    476 Views
    No one has replied
  • Deploying "assets" to Android device

    4
    0 Votes
    4 Posts
    9k Views
    GianlucaG
    I don't use qrc too, and this is my code into .pro for deploy to assets for Android: @ Common data to insert into APK Assets COMMON_DATA.path = /assets COMMON_DATA.files = $$files($$PWD/BundleData/Common/*) INSTALLS += COMMON_DATA @ Then you can access to the data installed using the "assets:/path/filename.ext" as path name.
  • Debugging Android setup

    5
    0 Votes
    5 Posts
    2k Views
    sierdzioS
    Nice research, thanks for posting.
  • How to set local ip into local ubuntu machine using Qt

    Locked
    1
    0 Votes
    1 Posts
    562 Views
    No one has replied
  • Chinese Font Support

    2
    0 Votes
    2 Posts
    2k Views
    K
    Hi Alex, Did you find the solution for the problem? --Kumar
  • 0 Votes
    1 Posts
    3k Views
    No one has replied
  • QT 5.4 Android : hidpi

    4
    0 Votes
    4 Posts
    2k Views
    F
    For a cross-platform implementation of density-independent units and an overview how to support multiple screen sizes & densities, you can also see this blog post: http://v-play.net/2014/11/supporting-multiple-screen-sizes-and-screen-densities-with-qt-and-v-play/
  • How to setBottomWidget insteads of setCentralWidget? and color? (solved)

    26
    0 Votes
    26 Posts
    8k Views
    SGaistS
    Sure it's not, it's meant to be used in a QMainWindow subclass constructor
  • How to delete an already existing widget layout

    2
    0 Votes
    2 Posts
    940 Views
    SGaistS
    Hi, No, you are trying to modify/delete a QMainWindow layout which is not the same thing. Just don't try do that, QMainWindow's layout is a special layout to handle all its components (dock, status bar, tool bar etc.) . If you don't want it, just don't use a QMainWindow. If you still need a QMainWindow, your custom widget should go in as the central widget (with setCentralWidget) So you have to at least create a container widget like I wrote "here":http://qt-project.org/forums/viewthread/49120/P15/
  • Signals and Slot Problem

    4
    0 Votes
    4 Posts
    911 Views
    SGaistS
    Depends, you can use C++11 lambda as slots
  • [help]how to build wwWidgets for arm linux?

    8
    0 Votes
    8 Posts
    2k Views
    SGaistS
    And you want to use that plugin with your Desktop x86 Qt Creator ?
  • Qt on Buildroot for Embedded Linux

    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, Can you start the program remotely e.g. through ssh ? You might get more information about what is happening.
  • Qt Creator no console output on iOS

    1
    0 Votes
    1 Posts
    777 Views
    No one has replied
  • Displaying Japanese characters in Qt

    4
    0 Votes
    4 Posts
    3k Views
    J
    Hi JKSH, We followed the approach 2 as mentioned above and used the font "osaka.unicode" instead of "katakana", now we are able to display the japanese characters on our screen. Regards, Jis
  • Prevent packaging gdbserver into .apk file

    1
    0 Votes
    1 Posts
    580 Views
    No one has replied
  • Bluetooth problem on ARM Ubuntu 12.04

    1
    0 Votes
    1 Posts
    637 Views
    No one has replied
  • How to set real estate between two component in VboxLayout (solved)

    2
    0 Votes
    2 Posts
    693 Views
    JKSHJ
    Hi, Set a "stretch factor":http://qt-project.org/doc/qt-5/layout.html#stretch-factors for each of your widgets You can do that using QBoxLayout::insertWidget() or QBoxLayout::setStretchFactor(). See http://qt-project.org/doc/qt-5/qboxlayout.html for detailed documentation for those functions.
  • [SOLVED] QGeoCoordinate returns Nan in iOS

    2
    0 Votes
    2 Posts
    963 Views
    H
    I found my problem. I added a line of code to above function and it works. @ source->setUpdateInterval(10000); source->updateRequest(); //this line of code solve my problem @
  • How to pin Main-window and LED widget as one entity? (Solved)

    2
    0 Votes
    2 Posts
    819 Views
    H
    http://codeprogress.com/cpp/libraries/qt/showQtExample.php?key=QMainWindowBackgroundImageStetch&index=546 Answer is in the above link. Fixated the picture onto the mainwindow, the location on the LED can then be fixed