Custom Android Image Crop

后端 未结 3 961
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 17:28

i just want to share this piece of code that i wrote. I tried searching for a custom crop activity, but most of them leads to the default \"com.android.camera.action.CROP\"

3条回答
  •  离开以前
    2020-12-07 17:39

    You should try:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
    
        setContentView(R.layout.crop_layout);
    
    
        myCropView = new CropView(this);
    
        Uri imageUri = getIntent().getExtras().getParcelable("path");
    
        b = (BitmapDrawable) BitmapDrawable.createFromPath(imageUri.getPath()); 
    
        myCropView.setImageURI(imageUri);
    }
    

    (Taken from an edit to your question.)

提交回复
热议问题