intent

  1. Star-Dust

    Android Question [SOLVED] Difficulty with new receivers to communicate with intents

    I'm trying to implement the new receivers but with little success. I enclose several examples below and illustrate the problems encountered 1) I've implemented a receiver that does something when boot completes. It works with Android 7 (after about 2/3 minutes from full boot) it doesn't work...
  2. H

    Android Question Is it possible to Cancel/Abort an Intent?

    I'm using Intent-Receiver to do a task every day at the same time. It work very well.(Thanks to Earl for putting me in right direction!) Now I'm considering that the user could want to disable this "alarm" if he need anymore. So which is the right way to abort/cancel the intent? my code is...
  3. yo3ggx

    Android Question Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE ...

    Hello, When I run the application I get the following error: notification_createnotification (java line: 204) java.lang.IllegalArgumentException: ro.yo3ggx.rxtxe: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent...
  4. Marcos Alves

    Android Question Share Image With Text (Caption) - Instagram and/or Twitter

    Hello all, I noticed that there are some alerts about Instagram deprecating receiving images with texts/captions pre filled. Is it true? If is possible, how can be done? Does anybody have a code sample? Thanks!
  5. B

    Android Question Receiver service starting intent bluetooth extras problem

    Hi all, in my project there's a service module that listen for the ACTION_ACL_DISCONNECTED event. When it occurs, I want to analyze the intent's extras available in the Service_Start Sub. In the Android developer page they said that the Broadcast Action "Always contains the extra fields...
  6. swChef

    Android Example Custom Intent Provider Requester Services, updated for Android 11 (API 30)

    Not long ago Don provided example Provider Requester Activity based communication via Intents. Although that Activity version had some hints in it for Service based version, it took several additional steps to get it working (Service Intent must be explicit, which may reflect more on my...
  7. Alex Guerrero

    Android Question How to select an option in an AlertDialog with intent

    Hello everyone, lately when I want to share a file I get an alertdialog 'want to share with...' with two options, 'Cancel' and 'Ok', in some cases I require 'Cancel' and in others 'Ok', I don't want the user to choose it, therefore I want to handle it with an intent, I have tried several...
  8. soyVB6

    Android Question [RESOLVED]Open android.settings.APP_NOTIFICATION_SETTINGS

    Greetings This worked until https://www.b4x.com/android/forum/threads/i-need-open-a-app_notification_settings-via-intent.73532/#post-476761 VERSION.SDK_INT 25 Since then he says: VERSION.SDK_INT 26, 27, 28, 29, 30... "The application is not in the list of installed applications" After reading...
  9. epiCode

    Android Question Headphone Media Button

    Can some please help with working example of media button detection ? Searched the forum, but mostly devs sharing their issues - no successful/working example (recent)
  10. S

    B4A Class Class media

    Hi, An easy way to take/record/choose photo/video/audio with this small class (clMedia.bas). No permission needed It uses intents to call default app. 3 constants for media type cPhoto = 0 cVideo=1 cAudio=2 2 constants for origin cNew=0 cChoose=1 1 method to call with 2 parameters (media...
  11. NachoImperium

    Android Question Broadcast listener isn't working on real phone

    Hey, my app should inform the user as soon as you receive an SMS. The permissions etc. I have already assigned everything, in my emulator everything works perfectly but unfortunately not with my real phone (Xiaomi). The Android version is the same, what is the reason...
  12. Programing Center

    Android Question Intent without remember my choice

    Hi all. I want to make intnet without 'remember my choise' option. How? First Pic have 'Remember my choise' but second Pic dosn't have this option.
  13. sadeq.hitex

    B4A Library Hitex Intent

    Hitex Intent is a almost complete intent Methods: Initialize Initialize2 (Obj As Object) obj can be : String Action and ... B4A Activity Class<?> Intent _____________ Example 1 : StartActivity(Intent.Initialize2(Main2).PutExtra("number","123456789")) In Main 2 : Dim Intetnt As...
  14. Programing Center

    Android Question Installer intent

    Hi All. I want to show the installation file of the application file in the internal folder of my application to the user. In the market where I want to publish the application, I have a problem with the following access AddPermission(android.permission.REQUEST_INSTALL_PACKAGES) For a way I want...
  15. 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...
  16. 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...
  17. 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"...
  18. 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...
  19. 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...
  20. 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
Top