b4xpages

  1. practicalsoft

    B4X FEED In B4J Using B4XPages , How to Avoid Flicker When Displaying Only One Page Out of Multiple Pages?

    With reference to the related thread (https://www.b4x.com/android/forum/t...ening-when-b4xpages-showpage-is-called.139647), by not using B4XPages.ShowPageAndRemovePreviousPages to call other pages flicker can be avoided but has the drawback of creating multiple windows/pages on the process. I...
  2. practicalsoft

    B4X FEED Good B4XPages Example

    I looked at all (all I could find - Boolets) examples. Is there a good B4XPages example (for B4i right now but for both) I am not talking a hello world. Something that does more (Load Bitmaps - when does this happen in B4i) How do I handle Rotate in B4i It seems only resize gets call on...
  3. practicalsoft

    B4X FEED For Desktop Applications, how to Use B4XPages Without Flicker to Display Multiple Window Contents?

    With reference to the related thread (https://www.b4x.com/android/forum/t...ening-when-b4xpages-showpage-is-called.139647), by not using B4XPages.ShowPageAndRemovePreviousPages to call other pages flicker can be avoided but has the drawback of creating multiple windows/pages on the process. I...
  4. practicalsoft

    B4X FEED B4XPages Bottom Navigation

    Hello! I have searched trying to find an answer to using a bottom navigation with B4XPages: Here was my original thread: iOS Question - B4XPages Three Page Example Menu Item Hello! I am using B4XPages and am having trouble with displaying my bottom navigation over the pages. In B4A I use...
  5. practicalsoft

    B4X FEED B4XPages Indeterminate Progress Hangs on Faded Black Background

    Hi, I'm using indeterminate progress bar in B4XPages. Sometimes the app just hangs on the faded black background. The progress bar itself is hiding when its function to hide, but the faded background remains. I'm using this library: MaterialDialogs Is this library is compatible with B4xPages...
  6. practicalsoft

    B4X FEED MQTT Chat with Auto Discovery, rewrittn for [B4XPages] , works ok , but questions

    [B4XPages] MQTT Chat with Auto Discovery, only one "XPage" , need improvement I have rewritten the (2017) example: MQTT Chat with Auto Discovery: https://www.b4x.com/android/forum/threads/mqtt-chat-with-auto-discovery.75713/ for B4XPages ; In B4XMainPage it only needs 4 lines to be...
  7. practicalsoft

    B4X FEED [B4XPages] MQTT Chat with Auto Discovery, only one "Page/File" need improvement

    [B4XPages] MQTT Chat with Auto Discovery, only one "XPage" , need improvement I have rewritten the (2017) example: MQTT Chat with Auto Discovery: https://www.b4x.com/android/forum/threads/mqtt-chat-with-auto-discovery.75713/ for B4XPages ; In B4XMainPage it only needs 4 lines to be...
  8. practicalsoft

    B4X FEED I want The MqttChat Example in [B4XPages] with runtime permissions 50EURO ?

    I want The MqttChat Example in [B4XPages] with runtime permissions 50EURO ?? Mqtt Example Android Tutorial - MQTT Chat with Auto Discovery This is an extension to the MQTT chat room example: https://www.b4x.com/android/forum/threads/b4x-mqtt-chat-room.61568/#content It is a chat room where...
  9. practicalsoft

    B4X FEED MqttChat auto discover Example as [B4XPages] but only one Activity in B4XPages

    MqttChat auto discover Example : https://www.b4x.com/android/forum/threads/mqtt-chat-with-auto-discovery.75713/ B4X: Private Sub client_MessageArrived (Topic As String, Payload() As Byte) Dim receivedObject As Object = serializator.ConvertBytesToObject(Payload) If Topic =...
  10. practicalsoft

    B4X FEED B4XPages_SqliteLight2 App has minor bug

    The B4XPages_SqliteLight2 tutorial app has a minor bug. If you add new row(s) to the table, they do not appear in the B4XTable view unless the program is restarted. The B4XTable view needs to be refreshed when rows are updated, added, deleted. For example, if you delete a row then click on the...
  11. practicalsoft

    B4X FEED ActivityViewController in B4XPages?

    Hi, how can I pass the parameter Page1 (for example), if I'm using B4XPages.? I tried.. Dim mp As Page = B4XPages.GetPage("B4XMapPage") But I get an error.... B4X: Dim avc As ActivityViewController avc.Initialize("avc", Array("Some text to share together with an image"...
  12. practicalsoft

    B4X FEED B4XPages Splash

    Hi all, I'm testing a very cool (and very useful) tutorial named "B4XPages Splash Screen" by @Erel Android Tutorial - [B4X] [B4XPages] Splash Screen B4A, B4i and B4J splash screen implementation. The implementation is different in each platform. 1. Don't miss the manifest editor code in B4A...
  13. practicalsoft

    B4X FEED [B4XPages] About B4XPages.GlobalContext

    Hello! I would like to ask the following questions: According to this post: https://www.b4x.com/android/forum/threads/b4xpages-shared-constants.121269/ we can access globals from any B4XPages app modules. If we write: B4X: Sub Process_Globals End Sub Sub Service_Create Public...
  14. practicalsoft

    B4X FEED B4XPages & XUI Scrolling Label

    Hi all, I'm try to manage a display problem about a B4X View used as label for a description text (see attached image "app_screenshot"). A POSSIBLE SOLUTION A cool solution that I found is (XUI Scrolling Label by @Erel). B4A Library - [B4X] [XUI] Scrolling Label A custom view with a label...
  15. practicalsoft

    B4X FEED [B4XPages] Errors when trying to run GoogleMaps Example

    Hello! I'm starting to use B4XPages and I'm studying several useful for my needs examples. Trying to run the GoogleMaps example, the first error I was having without try to debug, was at compiling process and it is the following: B4X: Generating R file. Error AndroidManifest.xml:29: error...
  16. practicalsoft

    B4X FEED B4XPages KeyPress

    How to use KeyPress with B4XPAGES? I have a webview in B4XMainPage and I would like to use the command webview.back, I don't know how to work with keypress in separate classes Main: Sub Activity_KeyPress (KeyCode As Int) As Boolean If KeyCode = KeyCodes.KEYCODE_BACK Then...
  17. practicalsoft

    B4X FEED [B4XPages] B4XPages questions

    Hello! I have written a taxi calling app with custom web socket push framework. The app has a starter service for global objects declaration and a pushservice service for handling the communication between server and mobile device. The pushservice also handles the Location and GPS...
  18. practicalsoft

    B4X FEED B4XPages & shared constants

    Hi all, within a B4XPages framework (from @Erel) app I need to share some (app) global constants. For example: B4X: Public Host As String = "https://acme.com" Public WSNodeURL As String = Host & "/node/" Public WSFormat As String = "?_format=json" MY GOAL I need to access them...
  19. practicalsoft

    B4X FEED B4XPages & Scheduled service

    Hi all, It's the first time that I'm facing a B4XPages (https://www.b4x.com/android/forum/t...k-for-managing-multiple-pages.118901/#content) mobile app development. Within this app my target is to implement a service that notify the user when a specific condition is true (check implemented...
  20. practicalsoft

    B4X FEED [REQUEST] example using 2 B4XPages objects

    Hi, Is it possible (my guess is yes) to use 2 distint B4XPages objects ? Why I ear you ask... Well, I want to take the splash screen example as a base, and add a few buttons to this "main page". each will then call its own B4XPage object... But since I haven't touched B4A for a while, and never...
عقب
بالا