public void onClickShare(View view) 

{

                         Intent shareIntent = new Intent(Intent.ACTION_SEND);

                         shareIntent.putExtra(Intent.EXTRA_SUBJECT, "分享照片");

                         shareIntent.putExtra(Intent.EXTRA_TEXT, "内容");

                         if (shotScreen_filePath != null) {

                                  File file = new File(shotScreen_filePath);

                                  shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));

                            }

shareIntent.setType("image/*");

                         shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

                         context.startActivity(Intent.createChooser(shareIntent, "分享"));

 

 }