gpt4 book ai didi

android - 与我的应用程序图标共享 Android 文本

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:43:48 24 4
gpt4 key购买 nike

是否可以与我的应用图标共享与此类似的文本?

enter image description here

因为我尝试这样做,但它适用于纯文本,但当我尝试使用图像时,它会共享整个图像,但我只想要一个小缩略图。那是我的实际代码:

Intent intent2=new Intent(Intent.ACTION_SEND);

intent2.setType("image/*");
intent2.putExtra(Intent.EXTRA_TEXT,random);
Uri path = Uri.fromFile(new File(Image));
intent2.putExtra(Intent.EXTRA_STREAM, path );
startActivity(Intent.createChooser(intent2, "Share via"));

最佳答案

试试这段代码:

Bitmap icon = mBitmap;
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
icon.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
File f = new File(Environment.getExternalStorageDirectory() + File.separator + "temporary_file.jpg");
try {
f.createNewFile();
FileOutputStream fo = new FileOutputStream(f);
fo.write(bytes.toByteArray());
} catch (IOException e) {
e.printStackTrace();
}
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/temporary_file.jpg"));
startActivity(Intent.createChooser(share, "Share Image"));

关于android - 与我的应用程序图标共享 Android 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27167869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com