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
  • 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
    941 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
    921 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
    782 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
    694 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
    971 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
    825 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
  • QML or QT widget app to communicate with a arduino (android)

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Using GPS receiver from Android device

    2
    0 Votes
    2 Posts
    1k Views
    M
    I have been trying to find tutorials that explain how to access android methods to access android llibarys. "Qandroidjnienvironment":http://qt-project.org/doc/qt-5/qandroidjnienvironment.html seems to be the way to go but i have no clue how to use it. I would like some help in that too
  • [Solved]How could I include new jar file on android?

    4
    0 Votes
    4 Posts
    4k Views
    M
    I have been looking for ways to use third party library but to no avail. Anybody now links that explain how to use the methods of a third party jar file
  • Unable to debug Android device

    2
    0 Votes
    2 Posts
    2k Views
    C
    Here is the full debug log: "http://pastebin.com/emvK6y5P":http://pastebin.com/emvK6y5P Things seem to be going well, up to the point at which gdb asks: @>&"target remote tcp::5039\n" ~"A program is being debugged already. Kill it? (y or n) [answered Y; input not from terminal]\n"@ And then the debugger exits.
  • Modifying default virtual keyboard on mobile devices

    2
    0 Votes
    2 Posts
    606 Views
    SGaistS
    Hi, If you want to modify the keyboard for your application, you'll have to go native API