B4A Question How to show only email apps when sharing text via intent - toby    Jul 4, 2022 This is the code I use to share some text via email:
Public Sub shareAppByEmail(subject As String, body As String)
Dim in As Intent
'Intent emailIntent = new Intent(Intent.ACTION_SENDTO....TEXT", body)
in.SetType("text/plain")
in.WrapAsIntentChooser("Share Via... B4A Code Snippet Instagram and Twitter share image and text with intent - tpakis    Apr 27, 2015   (7 reactions) "))
Dim inten As Intent
Dim tmpt As String = "your text"
inten.Initialize(inten...A little code to share an image to instagram using an intent. Hope it's usefull :)
Dim u... B4A Question Share Text Intent Creation - jazzzzzzz    Apr 8, 2016 How can I create this Intent to share text .
Intent sendIntent =newIntent();
sendIntent.setAction...().getText(R.string.send_to)));
Details here.
http://developer.android.com/training/sharing/send... B4A Question Share txt files - Sergio GermánRassino    Nov 17, 2016 share As Intent Dim archivo As String = "file://" & File.DirRootExternal &"...) share.SetType("text/plain") share.PutExtra("android.intent.extra.TEXT", archivo) share.WrapAsIntentChooser("Share text via") StartActivity(share) Could someone help me with this?...".txt", "text/txt", "Share the love!", "This is the text to go in...Hello. Thank you for your help for new users. I need to share a txt file by bluetooth and other aps... B4A Question Share Text and Picture Intent Creation - edgar_ortiz (first post)    Nov 16, 2020 You can check:
https://www.b4x.com/android/forum/threads/sharing-files-from-your-app-with-file-provider.70458/... B4A Question How to share Text and Image with intent - Star-Dust (first post)    Jun 10, 2017 ;)... B4A Question How share a text file with Intent ? - ibra939 (first post)    Feb 15, 2015 Is working to share text with any program ?... B4A Question Sharing post from my app directly to a Facebook group - khwarizmi    Dec 14, 2024 Hi all How to share a post from my app directly to a Facebook group? This code is for sharing directly to my wall, but not to a Facebook group. Dim shareIntent As Intent shareIntent.Initialize(shareIntent.ACTION_SEND, "") shareIntent.SetType("text/plain") shareIntent.PutExtra("android.intent.extra.TEXT","Text To Share") shareIntent.SetPackage("com.facebook.katana") StartActivity(shareIntent)... B4A Library [B4X] BCTextEngine / BBCodeView - Text engine + BBCode parser + Rich Text View - Erel    Dec 31, 2024   (72 reactions)   tags: Label BBCode, text style, RTF component, B4X, ritchtext, rich text issue where setting BBLabel.Text to an empty string didn't remove the text. - v1.71 - New Font tag... platform library with several features: - Text drawing engine. - Text layout engine. - BBCode.../android/forum/threads/b4x-bbscrollinglabel-rich-text-scrolling-label.114310/ https://www.b4x.com... related to text. You can for example use it as an alternative to CSBuilder where you have more control over the text drawing. I will explain the main use case of BBCodeView. Our layout is usually made... B4A Library [class] FileProvider - share files - Erel    Aug 16, 2021   (45 reactions)   tags: B4A Class FileProvider, share email file, share, File provider, email, WP SHARE and implement it in a class. Starting from Android 7 (API 24) you cannot directly share file uris... the manifest editor: AddManifestText(<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18" /> ) AddApplicationText( <provider..., <files-path name="name" path="shared" /> ) files-path = File... Page: 1   2   3   4   5   6   7   |