当前位置:操作系统 > 安卓/Android >>

Android 如何实现分享图片功能

对于图片,如何实现分享功能,请参阅下面的代码:

[java]
// 分享照片 
public void SharePhoto(String photoUri,final Activity activity) { 
    Intent shareIntent = new Intent(Intent.ACTION_SEND); 
    File file = new File(photoUri); 
    shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file)); 
    shareIntent.setType("image/jpeg"); 
    StartActivity(Intent.createChooser(shareIntent, activity.getTitle())); 


摘自 心灵净土
补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,