intent

  1. Cainsoft

    Android Question How can I open the call log (with intent)

    Hi All, I tried this: Dim i As Intent i.Initialize(i.ACTION_VIEW, "content://call_log/calls") StartActivity(i) this code opens the phone app but not in the call log tab.
  2. Yunus ÖZ

    Android Question Intent camera problem

    Hi, This is my code which is running when i click to button Dim obj4Url As Object If ph.SdkVersion < 24 Then Dim uri As Uri uri.Parse("file://" & File.Combine(imageFolder, "iv1.jpg")) obj4Url = uri Else Dim FileProvider As JavaObject Dim context As...
  3. M

    Android Question Trigger event when clicked on the "cancel" of an Intent view

    I was trying this code to open a package in playstore: Dim fURI As String fURI = "market://details?id=com.b4a.example" Dim Market As Intent Market.Initialize(Market.ACTION_VIEW,fURI) StartActivity(Market) However, it gives an option to any of the two android marketplaces...
  4. C

    Android Question Android Device with Built In Scanner

    I have a Android device with a built in barcode scanner, not a camera. In the documentation it mentions about using AIDL files. Am I able to use these in B4A to operate the scanner. Failing that I saw text relating to intents. Is the barcode scanner automatically broadcasting using an Intent...
  5. carlos7000

    Spanish Correr otras aplicaciones (Solucionado)

    Hola a todos. Estoy tratando de ejecutar una aplicacion cada cierto tiempo. Desafortanadamente no sé que hice el código fuente de dicha aplicación, lo que me impide agregarle un 'servicio'. Por lo que he creado un servicio, para llamar a dicha aplicacion cada 5 minutos. El código que estoy...
  6. J

    Android Question Activity.Finish: What does it mean?

    Good evening unfortunately, the Docs https://www.b4x.com/android/help/views.html#activity_finish for Activity.Finish is very sparse: Therefore my question to understand and prevent Bugs in my App: Does Activity.Finish just cleans up internal B4A resources or does it handle e.g. necessary...
  7. V

    Android Question Open External Applications

    I was wondering how I can open applications such as whatsapp, facebook, and other applications. I know that with intent I can do this, but I do not know how to get the intent of each application.
  8. Multiverse app

    Android Question Change the default device assist app

    After downloading Cortana, it lets you set as the default device assist app. The app does that by firing up the specific settings page via intent. So, what is the specific intent for doing so? I have asked the same question to many forums, but I got the same answer- It is not possible... Turns...
  9. MODERN TALKING

    Android Question Native Camera Intent

    Hi, Wondering if anyone knows if it is possible to send Intent to the Native Camera to Auto-Snap Picture and then Exit Thank you guys in advance
  10. alimanam3386

    Android Question New instance of an activity

    Hi guys , How can I create new instance of an activity ? I want to create new activity of act2 and again when I clicked the activity again new instance of this activity create. its my code but it not works Sub Activity_Click Dim Intent1 As Intent Intent1.Initialize("", "")...
  11. Multiverse app

    Android Question Default Device assistance app

    Sadly, now we can no more map our apps to Long press home button Event. But, There is a settings page where it is possible to change the default device assistance app: Is it any way possible to launch the settings page (via intent) to make the user change the setting?
  12. peacemaker

    Android Question Intent based camera in Android 4.x and 7.x for OCR

    HI, All For OCR the picture with a text must be prepared in correct orientation (without option\setting of the picture orientation, let it be so). And photo of the max possible resolution. If to use the intent based camera and get the photo for OCR - it's very different result under Android...
Top