如何移动和缩放 activity

How to make move and scale activity

我想让用户上传他的个人资料照片,但我想强制他先剪掉它。

我该怎么做?

我尝试从头开始,但我想这会花费很多时间,有没有图书馆可以帮我完成这项工作?

您可以使用 Picasso 库。非常好用。

例如:

 Picasso.with(mContext)
  .load(url)
  .centerCrop()
  .resize(yourImageView.getMeasuredWidth(),yourImageView.getMeasuredHeight())
  .error(R.drawable.error)
  .placeholder(R.drawable.blank_img)
  .into(yourImageView);

有几种方法,首先是建议使用 library 或使用 android intent

处理它

com.android.camera.action.CROP

你自己

我已经使用这个库一段时间了,它很棒

https://github.com/ArthurHub/Android-Image-Cropper