intent

  1. phowarso

    Android Question PhoneCalls is not work

    I ran my project in V 9.8. PhoneCalls was not worked properly. I declared "AddPermission(android.permission.CALL_PHONE)" in Manifest file. I used not only "Intent" but also "PhoneCalls". Both was not worked properly. When I clicked on "imvPhone" (imageView), the app run out on the running. I...
  2. K

    Android Question Service Contenxt Error at CreateFileProviderUri

    This Code run perfectly when call from activity. Sub CreateFileProviderUri (Dir As String, FileName As String) As Object Log(Dir & " : " & FileName) Dim FileProvider As JavaObject Dim context As JavaObject context.InitializeContext...
  3. N

    Android Question Open a APP_NOTIFICATION_SETTINGS via intent - Android 9 and 10

    Hi, I need to open notifications settings via intent, on Android 7 I used the this code below and works fine, but in Android 9 or 10 it returns "activity not found". Dim in1 As Intent in1.Initialize("android.settings.APP_NOTIFICATION_SETTINGS", "") Dim jo As JavaObject in1.PutExtra("app_uid"...
  4. sdixon

    Android Question reset action_send intent

    I've been working on an application that uses intent to send information via Whatsapp, twitter, Facebook, etc. The problem I've run into is that the first time I run the app, I get a list of all the methods available to send information on my phone. The second time I use the app, I don't have...
  5. rleiman

    Android Question Intent Based Camera - Taking photo with confirm screen

    Greetings, I'm experimenting with the intent based camera by Erel and would like to alter this code in TakePicture so the confirmation screen with "Ok" and "Retry" is not displayed so execution goes directly to ion_Event. Truly, Emad Sub TakePicture Dim i As Intent...
  6. S

    B4A Class Camera Intent, Picture and Video

    Hello, This is a class (clsCameraIntent) inspired by this thread. It adds Video support. One line of code in your activity to call the camera intent One Callback sub in your activity to get the dirame and filename of the picture/video taken/recorded Demo Project with class in zip attached SpSp
  7. walterf25

    Java Question onActivityResults Help

    Hello everyone, i'm currently trying to wrap a library for a POS system, the device has a built in app which makes it really easy to do all the Transactions between customer and banks, the app is called using a number of intents, they have provided a Class which defines all the actions and extra...
  8. peacemaker

    Android Question {SOLVED} Get file's MimeType from received Intent ?

    (Intent) Intent { act=android.intent.action.SEND typ=image/* flg=0x1b088001 cmp=peacemaker.elchecks/.main clip={image/* U:content://0@media/external/images/media/12645} (has extras) } Such Intent's GetData is null. But Extras: Bundle[{more_actions_quick_connect=1, from-myfiles=true...
  9. A

    Android Question Share image throw FileProvider class

    Hello, I tried to use Erel's new class (https://www.b4x.com/android/forum/threads/class-fileprovider-share-files.97865/#content) to share an image. I tried to share an image by the example of sharing a file, but the app crashed... Does anybody have an example of sharing an image(only) using...
  10. WebQuest

    Android Question Problems with FileProvider and intent.

    Hi I'm having problems with the FileProvider, I can not open pdf files with an external app. I use an intent to view other apps, but no apps appear in the selection panel, a message appears saying (that the app for this intent has either been blocked or not installed) but outside of my app in...
  11. C

    Android Question Saving a Picture to the Gallery

    I'm using the following code to save an image to the gallery. Dim Out AsOutputStream Dim Out As OutputStream Out = File.OpenOutput(File.DirInternal, "PI.jpg", False) bmp.WriteToStream(Out, 100, "JPEG") Out.Close If...
  12. Derek Johnson

    Android Question [Solved] Intent to show Google App Voice Settings and Download Languages

    I'm working with Voice Recognition and I would like to show the Voice Settings to the user. I know this can be done but I can't figure out the exact intent required. This is the screen that I want to show: Could someone tell me what the Intent would be to show this screen and also the...
  13. 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.
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. P

    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.
  20. 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...
Top