Search results

  1. Erel

    Android Question How to make android application into online application?

    I've deleted the post with the full code. It is not useful in any way.
  2. Erel

    Android Question Suddenly google code scanner (based on ML kit) not working

    If you have another device to test then try it. Deleting Google Play Services cache might help. Also try to restart the device.
  3. Erel

    Wish Subscription B4X

    Will check and update. Good suggestion.
  4. Erel

    B4A Library [class] DocumentScanner based on Google ML Kit

    You can use bmp.WriteToStream or File.Copy("ContentDir", uri, ...) Share file: https://www.b4x.com/android/forum/threads/class-fileprovider-share-files.97865/#content And to create a pdf document: 1. Change the Scan method to: Public Sub Scan As ResumableSub Dim options As JavaObject...
  5. Erel

    Android Question AS_TextFieldAdvanced - ComboBox

    Moved to the questions forum.
  6. Erel

    B4A Library [B4X] HugeImageView - show very large images

    Add this code to the class to center the image: Public Sub CenterImage(ZoomLevel As Float) pnlBackground.SetLayoutAnimated(0, 0, 0, mBase.Width, mBase.Height) ZoomChanged(pnl.Width / 2, pnl.Height / 2, ZoomLevel) End Sub Pass 1 for no zoom.
  7. Erel

    Android Question objects

    Thank you. Fixed.
  8. Erel

    Android Question Compile error B4A: Multiple definitions for class com.ortiz.touch.TouchImageView$CompatScroller

    It looks like a problem with JSTouchImageView library. It probably includes classes that are also inside a dependent jar. Better to post it here: https://www.b4x.com/android/forum/threads/jstouchimageview-library-pinch-pan-zoom-image.73236/page-2#posts
  9. Erel

    Android Question Watchdog for Kiosk Application

    1. You can start a foreground service while the app is in the foreground (visible). 2. I think so.
  10. Erel

    Android Question Webview Upload File with camera function

    Upload files with WebView
  11. Erel

    Android Question Suddenly google code scanner (based on ML kit) not working

    Looks like a bug in the SDK itself. Try to change the package name and see if it starts working.
  12. Erel

    Android Question objects

    All types can be cast to the Object type. All views (not including custom views) can be cast to B4XView.
  13. Erel

    Android Question Suddenly google code scanner (based on ML kit) not working

    You are seeing the system logs. It includes the output of all apps. Change the scan method code to: Public Sub Scan (Formats As List) As ResumableSub Dim builder As JavaObject...
  14. Erel

    B4R Question [SOLVED] DMX Error multiple definition of '__vector_18'

    I don't know if it will help, but one way to debug such issues is to open the generated Arduino project with Arduino IDE and start removing things until you get it compiling.
  15. Erel

    Android Question Microsoft JDBC driver working perfectly on B4J but NOT on B4A

    I guess that the jdbc driver isn't compatible with Android. You will either need to use an older version, JDTS or as @aeric wrote a middleware. In the long run I assure you that switching to a middleware will worth your efforts.
  16. Erel

    Bug? B4A 12.80 Startup Error

    Try to uninstall B4A. Make sure that all files were deleted from the installation folder and install it again.
  17. Erel

    B4J Question jServer 4 - Keeping Jetty Up to Date

    jServer source code: https://github.com/AnywhereSoftware/B4J/tree/master/Libs_Server/src/anywheresoftware/b4j/object And you don't really need it as minor versions are usually backward compatible. Just update the XML file.
  18. Erel

    B4J Question How to view the files from DirAssets after Packager

    Assets files are not easily accessible (with external tools) once packed. They are inside the module in some binary format.
  19. Erel

    B4J Question Integrated B4JPackager11 - Include Files

    Please start a new thread. There should only be a question in the very first post.
Top