B4A Question Show image in Gallery (Android 7.0) - GGSoft    Sep 27, 2018   tags: MediaScanner Intent ), "prueba.jpg"))
Phone.SendBroadcastIntent(i)
Else
' This does not work...
' "Broadcast" image to gallery
Dim Phone As Phone
If Phone.SdkVersion < 19 Then... B4A Question Force media scanner on deleted file - lymey    Jan 29, 2013 .MEDIA_SCANNER_SCAN_FILE", "file://" & File.Combine(filepath, filename))
Dim p As Phone
p.SendBroadcastIntent(i)
Bottom line question then:
How do I make the media scanner rescan and display... B4A Question Basic4android v1.60 - second beta is online - Erel    Jul 13, 2011 The second beta (v1.57) is now online, at the same location. This version fixes all the issues discussed yesterday. Multiple widgets should work correctly now. PhoneEvents was refactored to remove the READ_STATE permission if it is not needed. Use PhoneEvents.InitializeWithPhoneState if you need the PhoneState event (the permission will be added in this case). There is also a new method: Phone.SendBroadcastIntent.... B4A Question [HALTED]Broadcast intent - Erel (first post)    Oct 30, 2019 Post the documentation you are talking about.
+1
Note that broadcasting intents is done with Phone.SendBroadcastIntent.... B4A Question xCustomlistview to image - new_danoptic    Apr 2, 2020 ))
Dim p As Phone
p.SendBroadcastIntent(i)... B4A Question Disable the Power button. - Philip Prins (first post)    Apr 10, 2025   (2 reactions) Sub Activity_WindowFocusChanged (Focused As Boolean) If Starter.PhotoMode = True Then Return If Focused = False And VMP.ChkLocked = True And Starter.PhoneDetails1.ScreenOn = True Then Dim i As Intent i.Initialize("android.intent.action.CLOSE_SYSTEM_DIALOGS", "") Dim p As Phone p.SendBroadcastIntent(i) End If End Sub... B4A Question AddActivityText vs AddServiceText - Erel (first post)    Jan 3, 2017 You should use AddReceiverText and send the intent with Phone.SendBroadcastIntent.... B4A Question CLOSE_SYSTEM_DIALOGS android 12+ - Duque    Feb 12, 2024 This worked fine up to android 11 I am referring to this same case 6 years later. Dim intent As Intent intent.Initialize("android.intent.action.CLOSE_SYSTEM_DIALOGS", "") 'close the notifications drawer Dim p As Phone p.SendBroadcastIntent(intent) Don't scold me, I spent the whole day reading I'm sorry I didn't find the solution, help!!!... B4A Question Copy File On DirRootExternal With ExternalStorage - rasoull_021 (first post)    May 20, 2021 )) phone.SendBroadcastIntent(i1) End Sub... B4A Library Firebase phone number authentication - Enrico Fuoti    Dec 17, 2022   (36 reactions) Here is my second lib, a wrap to integrate firebase auth phone number authentication. It is working nicely on my app. for reference visit: Authenticate with Firebase on Android using a Phone Number FirebaseAuthPhone Version: 1.9 Events: phoneverification (success As Boolean, info As String) phonesignedin (success As Boolean, User As FirebaseAuthPhoneUser, info As String) oncodesent... As String) Methods: Initialize (eventName As String) startPhoneNumberVerification (phoneNumber As String... Page: 1   2   3   4   5   6   7   |