繁体   English   中英

在Android中设置默认图像裁剪程序

[英]Set default image cropper program in android

在我的应用程序中,用户选择图像。 启动CROP_IMAGE意图后,它将显示对话框以选择设备上安装的可用图像裁剪器之一。 我想解决的问题是,已安装的程序之一会启动默认值,即用户不必一直选择要使用哪个程序。

是否可以跳过此选择器对话框并自动启动一个图像裁剪器?

我找到了答案:

Intent cropApps = new Intent("com.android.camera.action.CROP");
cropApps.setType("image/*");
List<ResolveInfo> list = this.getPackageManager().queryIntentActivities(cropApps, 0);
int size = list.size();
if (size == 0) 
{           
    Toast.makeText(this, "Can not find image crop app", Toast.LENGTH_SHORT).show();    
} 
else 
{
    ResolveInfo res = list.get(0);
    Intent cropIntent = new Intent();
    cropIntent.setClassName(res.activityInfo.packageName, res.activityInfo.name);
    cropIntent.setDataAndType(picUri, "image/*");
    cropIntent.putExtra("outputX", 800);
    cropIntent.putExtra("outputY", 800);
    cropIntent.putExtra("aspectX", 1);
    cropIntent.putExtra("aspectY", 1);
    cropIntent.putExtra("scale", true);
    cropIntent.putExtra("return-data", true);
    startActivityForResult(cropIntent, PIC_CROP);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM