Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Meego and Symbian two plateforms app problem

Meego and Symbian two plateforms app problem

Scheduled Pinned Locked Moved Mobile and Embedded
1 Posts 1 Posters 1.5k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    rashid.inayat
    wrote on 10 Nov 2011, 12:55 last edited by
    #1

    Hello Guys!

    I am developing an app to run on both Meego nokia n950 and symbian devices (Nokia C6-01, Nokia C7-00, Nokia E6-00, Nokia E7-00, Nokia N8-00, Nokia X7-00.) My application development is almost done and some how tested on symbian devices. But when I install on meego device it installs fine but two things happens.
    *

    • it installs but could not view app screen on meego device , even app icon is available on meego device home, even tapping on app icon it does not show any screen but in qt creator consol log messages are visible and qt creator says app is running.
    • I am using Loader component to navigate in application different pages, on symbian it works fine but on meego it does not show even first splash screen. Is loader element not supported on meego or something else?*

    Following is the code snipped of Loader.qml which is main starting point of app.
    @import QtQuick 1.0
    Loader {
    id: loader
    source: "Splash.qml"

    Connections {
        target: loader.item
        onShowScreen: loader.source = msg
    
    }
    

    }
    @

    Also should I not use Loader but use states kind of thing? But using states my application structure will completely change and it would cost much time.

    And in splash. qml following following code is written to show two splash images one after other and then navigate to next screen Book.qml.

    @import QtQuick 1.0

    Rectangle {
    id: firstScreen
    Image {
    id: splashimage
    source: "images/splashscreen.png"
    }

    signal showScreen(string msg)
    
    Timer {
        id: timer
        interval: 5000 // 5 secs
        running: true
        onTriggered: firstScreen.showScreen("Book.qml")
    }
    

    }
    @
    Please do help me in this issue as I am stuck at the end and could not complete things.
    Thank You

    1 Reply Last reply
    0

    1/1

    10 Nov 2011, 12:55

    • Login

    • Login or register to search.
    1 out of 1
    • First post
      1/1
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved