안 드 로 이 드 7.0 코드 를 통 해 그림 을 친구 권 에 공유 합 니 다.
11968 단어 Android
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.