teddybear Well-Known Member Licensed User May 5, 2025 #2 What do you mean the sharing the content of the text box to WeChat? copy the content to clipboard, and then start wechat intent and paste it? Upvote 0
What do you mean the sharing the content of the text box to WeChat? copy the content to clipboard, and then start wechat intent and paste it?
aeric Expert Licensed User Longtime User May 5, 2025 #3 Try: B4X: Private Sub BtnShare_Click Dim in As Intent in.Initialize(in.ACTION_SEND, "") in.PutExtra("android.intent.extra.TEXT", txtMessage.Text) in.SetType("text/plain") in.SetPackage("com.tencent.mm") StartActivity(in) End Sub Upvote 0
Try: B4X: Private Sub BtnShare_Click Dim in As Intent in.Initialize(in.ACTION_SEND, "") in.PutExtra("android.intent.extra.TEXT", txtMessage.Text) in.SetType("text/plain") in.SetPackage("com.tencent.mm") StartActivity(in) End Sub
W wuxuetie Member May 6, 2025 #4 teddybear said: What do you mean the sharing the content of the text box to WeChat? copy the content to clipboard, and then start wechat intent and paste it? Click to expand... Thank you for your answer Directly launch WeChat, select personnel, and the content will be displayed in the WeChat dialog box Upvote 0
teddybear said: What do you mean the sharing the content of the text box to WeChat? copy the content to clipboard, and then start wechat intent and paste it? Click to expand... Thank you for your answer Directly launch WeChat, select personnel, and the content will be displayed in the WeChat dialog box
teddybear Well-Known Member Licensed User May 6, 2025 #5 wuxuetie said: Thank you for your answer Directly launch WeChat, select personnel, and the content will be displayed in the WeChat dialog box Click to expand... I don't think WeChat has the feature Upvote 0
wuxuetie said: Thank you for your answer Directly launch WeChat, select personnel, and the content will be displayed in the WeChat dialog box Click to expand... I don't think WeChat has the feature
aeric Expert Licensed User Longtime User May 6, 2025 #6 teddybear said: I don't think WeChat has the feature Click to expand... It's Android feature. Upvote 0
teddybear Well-Known Member Licensed User May 6, 2025 #7 aeric said: It's Android feature. Click to expand... The OP means that launch WeChat directly instead of starting WeChat on B4A app. Upvote 0
aeric said: It's Android feature. Click to expand... The OP means that launch WeChat directly instead of starting WeChat on B4A app.