안 드 로 이 드 7.0 코드 를 통 해 그림 을 친구 권 에 공유 합 니 다.

11968 단어 Android
Android 7.0 에서 시스템 은 scheme 을 file:/의 uri 로 제한 하기 때문에 이러한 uri 를 통 해 공유 하 는 일부 인 터 페 이 스 를 사용 할 수 없습니다.예 를 들 어 코드 를 사용 하여 친구 권 을 공유 하 는 인 터 페 이 스 를 호출 합 니 다.이 때 는 다른 URI scheme 을 사용 해 야 합 니 다. file://,예 를 들 어 MediaStore 의 content://。직접 코드 올 리 기:
    private static boolean checkInstallation(Context context, String packageName) {
        try {
            context.getPackageManager().getPackageInfo(packageName, PackageManager.GET_ACTIVITIES);
            return true;
        } catch (PackageManager.NameNotFoundException e) {
            return false;
        }
    }

    public static void shareToWeChat(View view, Context context) {
        // TODO: 2015/12/13               
        try {
            if (!checkInstallation(context, "com.tencent.mm")) {
                SnackBarUtil.show(view, R.string.share_no_wechat);
                return;
            }
            Intent intent = new Intent();
            //          ,     ,          
            ComponentName comp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI");
            intent.setComponent(comp);
            intent.setAction(Intent.ACTION_SEND_MULTIPLE);
            intent.setType("image/*");
//        intent.setType("text/plain");
            //  Uri    
//        String msg=String.format(getString(R.string.share_content), getString(R.string.app_name), getLatestWeekStatistics() + "");
            String msg = context.getString(R.string.share_content);
            intent.putExtra("Kdescription", msg);
            ArrayList imageUris = new ArrayList();
            // TODO: 2016/3/8            
            File dir = context.getExternalFilesDir(null);
            if (dir == null || dir.getAbsolutePath().equals("")) {
                dir = new File(Environment.getExternalStorageDirectory().getAbsolutePath());
            }
            File pic = new File(dir, "bigbang.jpg");
            pic.deleteOnExit();
            BitmapDrawable bitmapDrawable;
            if (Build.VERSION.SDK_INT < 22) {
                bitmapDrawable = (BitmapDrawable) context.getResources().getDrawable(R.mipmap.bannar);
            } else {
                bitmapDrawable = (BitmapDrawable) context.getDrawable(R.mipmap.bannar);
            }
            try {
                bitmapDrawable.getBitmap().compress(Bitmap.CompressFormat.JPEG, 75, new FileOutputStream(pic));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
                imageUris.add(Uri.fromFile(pic));
            }else {
                //     7.0     
                Uri uri =Uri.parse(android.provider.MediaStore.Images.Media.insertImage(context.getContentResolver(), pic.getAbsolutePath(), "bigbang.jpg", null));
                imageUris.add(uri);
            }

            intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
            ((Activity) context).startActivityForResult(intent, 1000);
        }catch (Throwable e){
            SnackBarUtil.show(view,R.string.share_error);
        }

또 다른 방법 은 FileProvider 가 파일 을 공유 하 는 것 입 니 다.조작 하기 가 좀 복잡 합 니 다.대략 코드 는 다음 과 같 습 니 다.(코드 기능 은 사진 을 찍 는 것 입 니 다)
String mCurrentPhotoPath;

private File createImageFile() throws IOException {
    // Create an image file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
    String imageFileName = "JPEG_" + timeStamp + "_";
    File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
    File image = File.createTempFile(
        imageFileName,  /* prefix */
        ".jpg",         /* suffix */
        storageDir      /* directory */
    );

    // Save a file: path for use with ACTION_VIEW intents
    mCurrentPhotoPath = "file:" + image.getAbsolutePath();
    return image;
}

static final int REQUEST_TAKE_PHOTO = 1;

private void dispatchTakePictureIntent() {
    Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    // Ensure that there's a camera activity to handle the intent
    if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
        // Create the File where the photo should go
        File photoFile = null;
        try {
            photoFile = createImageFile();
        } catch (IOException ex) {
            // Error occurred while creating the File
            ...
        }
        // Continue only if the File was successfully created
        if (photoFile != null) {
            Uri photoURI = FileProvider.getUriForFile(this,
                                                  "com.example.android.fileprovider",
                                                  photoFile);
            takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
            startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
        }
    }
}

manifest 에서 이 FileProvider 를 설명 해 야 합 니 다.

   ...
   "android.support.v4.content.FileProvider"
        android:authorities="com.example.android.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        "android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths">
    
    ...

res/xml/폴 더 아래 새 파일 filepaths.xml:

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="my_images" path="Android/data/com.example.package.name/files/Pictures" />
paths>

참조:stackoverflow

좋은 웹페이지 즐겨찾기