如何从带有图像预览的 Android 应用程序共享 url

问题描述 投票:0回答:1

我想创建一个共享表,就像谷歌商店中存在的共享一样,如您所见here is google store sample

目前我正在使用此代码:

    ShareCompat.IntentBuilder(context)
        .setType("text/plain")
        .setText("TITLE\nhttp://www.url.com")
        .startChooser()

但是我无法在共享表中设置图像,这是我的实现结果: my implementation result

kotlin url share implicit
1个回答
0
投票

问题只是在设置文本中添加标题:

 ShareCompat.IntentBuilder(context)
    .setType("text/plain")
    .setText("TITLE\nhttp://www.url.com")
    .startChooser()

所以解决方案是将其删除,以便操作系统能够从中读取 url 内容:

 ShareCompat.IntentBuilder(context)
    .setType("text/plain")
    .setText("http://www.url.com")
    .startChooser()
© www.soinside.com 2019 - 2024. All rights reserved.