i manage to do a imageview that allow user drag edge/ side to resize the imageview, currently i select the imageview by using the picasso library, is it possible to implement the drag edge/side to resize the imageview by using picasso library or need to implement it by other library, any suggestion to solve this problem?
MainActivity
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView imageView = (ImageView) findViewById(R.id.imageview);
Picasso.with(this)
.load("http://i.imgur.com/DvpvklR.png")
.placeholder(R.drawable.placeholder) // optional
.error(R.drawable.error) // optional
.resize(450, 500) // optional
.rotate(90) // optional
.into(imageView);
}
}