vinesh
vinesh

Reputation: 4923

How to zoom image not using imageview in android?

I am working on client server application in android and want to zoom the image sent from client on server and get the zoomed image back. how can i do it?

Upvotes: 2

Views: 114

Answers (2)

bhumika rijiya
bhumika rijiya

Reputation: 440

Try this, if you dont want use imageview

Use TouchImageView https://github.com/MikeOrtiz/TouchImageView

<com.luminous.pick.TouchImageView
                android:id="@+id/img2"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

I hope it will help you..

Upvotes: 0

Gyonder
Gyonder

Reputation: 3756

You can use WebView if you don't want ImageView.

Upvotes: 1

Related Questions