Putting some indicator around the image in image move/resize/rotate operations

前端 未结 8 1374
终归单人心
终归单人心 2021-01-30 13:54

I would like to Scale, Move, Resize Image. I would like to surround the image with Indicators which guide user what operation these indicators perform i.e. Moving, Rotating, S

8条回答
  •  孤独总比滥情好
    2021-01-30 14:31

    I know this is not an answer but it's worth mentioning.

    Take a look at this project. I intend to put it on GitHub but it is not done yet (at all).

    There is a button to rotate the image. I am still working on the "save". Many of the classes are taken from the Android source thanks to Lorenzo Villani's project

    Add to your project's manifest:

        
    

    Call the activity using:

    Intent intent = new Intent(mContext, CropImage.class);
    intent.setData(uri);
    startActivityForResult(intent, S.request.cropimage);
    

    enter image description here

提交回复
热议问题