B4A Tutorial intent for beginner - messages between apps - Hamied Abou Hulaikah (first post)    Oct 23, 2020   (20 reactions) 4- The Android OS evalutes your missing info in selecting most appropirate app, but many times you want Android to force user to select the app, in this case we should add intent1.WrapAsIntentChooser method:
Dim intent1 As Intent
intent1.Initialize("android.intent.action.SEND", "")
inte B4A Question Button Click Not Opening in Browser - Erel (first post)    Mar 13, 2019   (2 reactions) An intent by itself does nothing. There are all kinds of ways to start intents and it depends on the intent target. In most cases intents should be started with StartActivity. B4A Question intent = Intent.getIntent - Erel (first post)    Jan 25, 2015   (1 reaction) Please don't limit your questions to a single member.
Just pass the url as the second parameter. B4A Question how to run java activty from class - Erel (first post)    Dec 11, 2024 Try this: Dim intent As Intent intent.Initialize("", "") intent.SetComponent("b4a.example.godot/b4a.example.godot.main$GodotApp") StartActivity(intent) B4A Question How can I convert The following Java code To B4A code? Thanks - Jmu5667 (first post)    Nov 13, 2024   (1 reaction) Sub StartWeChatActivity
Dim pm As PackageManager
Dim intent As Intent
intent = pm.GetApplicationIntent("com.tencent.mm")
If intent.IsInitialized Then
intent.PutExtra("LauncherUI.From.Scaner.Shortcut", True)
intent.Action = "android.intent.actio B4A Question Broadcast Receiver API > 25 - marcoseinco (first post)    Mar 27, 2024 This is the code I execute on Android Studio app: Intent intent = new Intent(); intent.putExtra("notice",simp); intent.setAction("com.seinco.broadcastreceiver.CUSTOM_INTENT"); sendBroadcast(intent); As you can see is very simple. B4A Question PhoneIntents Error (intent://...) - Hamied Abou Hulaikah (first post)    Jul 18, 2021 Use intent, Try something like this:
Sub WebView1_OverrideUrl (Url As String) As Boolean
Log(Url) '-"intent://pay?srCode=3325365#Intent;scheme=shinhan-sr-ansimclick;package=com.shcard.smartpay;end;"
If Url.Contains("intent") Then
dim intent1 as intent
intent1.initialize(inten B4A Question Open auto start page - alirezahassan (first post)    Apr 01, 2021   (1 reaction) Maybe it will help you.
Dim Intent As Intent
Intent.Initialize("miui.intent.action.APP_PERM_EDITOR","")
Intent.SetComponent("com.miui.securitycenter/com.miui.permcenter.permissions.PermissionsEditorActivity")
Intent.PutExtra("extra_pkgname",Application.PackageName)
StartActivity(Intent) B4A Question File Provider share file with text description - asales (first post)    Aug 19, 2018   (3 reactions) I use this: Sub PostWhatsapp Dim intent As Intent intent.Initialize(intent.ACTION_SEND,"") intent.SetType("image/jpg") intent.SetComponent("com.whatsapp/.ContactPicker") intent.putExtra("android.intent.extra.TEXT", "put your text here") intent.PutExtra("android.intent.extra. B4A Question [Solved]Intent not working - AndroidMadhu    Apr 02, 2021 Hello, I am trying to share a text from my app to another installed apps . But I am not able to share the text to the above mentioned application. I ma getting error as below : " I am sharing my below code : Dim intent As Intent intent.Initialize(intent.ACTION_SEND,"") intent.PutExtra("text","hell Page: 1   2   3   4   5   6   7   Powered by ColBERT |