Is there an easy way to enlarge the image?

Asked 1 years ago, Updated 1 years ago, 84 views

Is there a way to allow users to zoom in and out of their image?

android zoom imageview

2022-09-22 22:17

1 Answers

Among Android open sources, there is a very good open source called TouchImageView. https://github.com/MikeOrtiz/TouchImageView For more information, visit here.

TouchImageView img = (TouchImageView) findViewById(R.id.img); By default, this is how you use it.

In xml,

<com.example.touch.TouchImageView
    android:id="@+id/img”
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

It's defined like this.


2022-09-22 22:17

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.