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. Slide menu in android application
Forum Updated to NodeBB v4.3 + New Features

Slide menu in android application

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
androidqt 5.8slidemenu
3 Posts 3 Posters 2.2k Views 2 Watching
  • 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.
  • P Offline
    P Offline
    prithiviraj
    wrote on last edited by
    #1

    How to create slide menu in android application using qt library? I would like to create by c++ coding. if possible instead of going to QML.

    1 Reply Last reply
    0
    • S Offline
      S Offline
      Schluchti
      wrote on last edited by
      #2

      What do you exactly mean by "slide menu"?

      Are you looking for a Drawer? http://doc.qt.io/qt-5/qml-qtquick-controls2-drawer.html

      Want to read more about Qt?

      https://gympulsr.com/blog/qt/

      Latest Article: https://gympulsr.com/blog/qt/2017/06/14/ios-background-music-qt.html

      1 Reply Last reply
      0
      • GTDevG Offline
        GTDevG Offline
        GTDev
        wrote on last edited by
        #3

        Hi!
        Another option (but also QML only) is the AppDrawer available with V-Play Engine.
        Android Navigation

        It is also possible to use the Navigation type to create a menu that uses a drawer on Android and a tab-bar on iOS.

        iOS Navigation

        For example like this:

         import VPlayApps 1.0
        
         App {
           Navigation {
        
             NavigationItem {
               title: "Home"
               icon: IconType.home
        
               NavigationStack {
                 Page {
                  title: "Main Page"
                 }
               }
             }
        
             NavigationItem {
               title: "Lists"
               icon: IconType.list
        
               NavigationStack {
                 Page {
                  title: "Lists"
                 }
               }
             }
        
           }
         }
        

        Best,
        GT

        Senior Developer at Felgo - https://felgo.com/qt

        Develop mobile Apps for iOS & Android with Qt
        Felgo is an official Qt Technology Partner

        1 Reply Last reply
        0

        • Login

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