0
votes
0answers
26 views

How to draw multiple layers over Custom ImageView background

I am new to android, spent whole day trying to figure this out including endless digging in this website, and still can't figure it out. So usually I don't ask questions here but decided to go for it ...
0
votes
0answers
25 views

How do I modify TouchImageView to get *right* image pixel color?

I am using Mike Ortiz' TouchImageView class. Now I would like to add new functionality to his code, to be able to get the pixel color, touched by the user, of the shown image. I have been trying to do ...
2
votes
2answers
71 views

Image get clipped while rotating canvas in android?

I am developing an application in which I am rotating image using following code. Bitmap bmpOriginal = BitmapFactory.decodeResource(this.getResources(), R.drawable.image2); Bitmap bmResult = ...
0
votes
0answers
165 views

How to zoom canvas along with image inside view pager in android?

I am using TouchImageView for my android application along with ViewPager. Pinch zoom is working absolutely fine with above. Now, I am trying to draw some rectangle on the image view. For that I am ...
0
votes
1answer
109 views

Android Circle appearing lower than expected in imageview

I have been trying to draw a circle inside ImageView as soon as Touch Event Happens, at the position of Touch. I have worked out some examples including Android - Canvas drawLine inside ImageView. My ...
0
votes
0answers
50 views

ImageView placed correct position when I touch the screen

I have a problem with an ImageView position.I am developing a map app and each pin is an Imageview.I have an listview which includes building names and when user choose a child,app draw an 'here' pin ...
0
votes
1answer
43 views

Moving an Image in Elliptical path

I am in the process of creating an Android App which has an Image. The image has to cirle around the center in the Elliptical path. I would require a funtion to return the X and Y coordinates of the ...
-1
votes
1answer
212 views

clear the canvas draw programmatically Android

well i'v problem with canvas.draw() i'm having multiple frames to overlay on the same bitmap . and i succeed to do this. but the problem is when now it comes to apply another frame using the same ...
0
votes
2answers
328 views

add text on imageview and save it

i am trying to create an application which add text to image. In this my image is coming from gallery and text is added by user. For that i have created my layout as <RelativeLayout ...
7
votes
3answers
588 views

rotate dial in limited degrees

All I want rotate image in particular angle as like below image. I have code for rotation but it rotate 360 degree but I want it only for particular degrees and get the selected number which is upper ...
12
votes
2answers
478 views

Android - How to circular zoom/magnify part of image?

I am trying to allow the user to touch the image and then basically a cirular magnifier will show that will allow the user to better select a certain area on the image. When the user releases the ...
-1
votes
1answer
379 views

drawing on Image View android

Can anybody help me with how to draw a circle of specific radius on an ImageView every time pixel values (centers for the circle to be drawn) are received from another Activity?
0
votes
1answer
134 views

Drawing several layers onto ImageView

I'm trying to follow instructions from Android developers site but I must be doing something wrong. I tried to create custom ImageView and draw 2 bitmaps onto it. Activity public class ...
1
vote
1answer
114 views

My bitmap does not show all pixels

My problem is that, i can't view all the image or some pixels. I have a imageview and bitmap on it. And with canvas library, I drawing the imageview limits. But the result is wrong. Why not sample ...
0
votes
1answer
400 views

Android: Getting touch location point on ImageView

I am making an app wherein I want to get the touched point on Image. I have tried using this link : Android: how to detect touch location on ImageView if the image view is scaled by matrix? But, I ...
0
votes
1answer
116 views

Adding text on top of an image using a Canvas - Android

I want to add some text on top of an image. I read the image from the sd card and set it to a Bitmap variable. Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath()); Then I added it ...
0
votes
0answers
321 views

Zoom in and zoom out in android image view having another image drawn with canvas over it

I have a image over which i have drawn an bitmap using canvas. i have implemented zoom in and zoom out functionality on imageview, but the canvas which i have drawn doesn't move when there is a ...
0
votes
1answer
37 views

Identify portions of image which is to be shown in ImageView

I have got an image with different arbitrary shaped portions in it. Now I want to show some data when clicked in the particular portion of the Image. e.g. When I click in the portion A, I want to ...
3
votes
2answers
1k views

How to make view resizable on touch event

See the following image I want to change the shape of highlighted view by dragging its corner.. not necessory the view after dragging the corner should be rectangle it can be any arbitary shape ...
2
votes
1answer
183 views

How to remove withstanding space from ImageView after clipping its canvas?

I'm having an ImageView displaying a Bitmap. In it's onDraw method I use clipRect to cut off some pixels from the bottom. This works fine, but the height of the ImageView doesn't get adjusted to the ...
2
votes
1answer
1k views

How do I erase (make transparent) one custom region in a Android's canvas?

I'm overriding Android's ImageView in order to make the corners of my image transparent. I can accomplish that clipping the canvas in my onDraw(Canvas canvas): @Override protected void onDraw(Canvas ...
0
votes
1answer
2k views

Android - Canvas drawLine inside ImageView

I've one ImageView in which I want to draw a Line. I've done the follow: mImagenCampo = (ImageView) findViewById(R.id.imagen_campo); crearPunto(mArea9M, mPaloIzq,v.getWidth(), ...
3
votes
1answer
588 views

Android: Draw a moveable and sizeable rectangle on ImageView(Or any other bitmap compatible widget) and crop the selected region

I want to crop my image which is being displayed on an ImageView. How I want to go about it is that I want a re-sizable rectangle to be displayed on the image. That rectangle will have moveable ...
1
vote
1answer
1k views

Draw a bitmap/canvas on top of ImageView

I'm new to android programming (writing my first app now) and I need some help. I've set up my Framelayout with a linearlayout inside of it with a button, ImageView, and TextView. I want to be able ...
0
votes
1answer
1k views

Draw an image floating over another in Android

I want to be able to dynamically place image(s) over another image in my app. Consider the first image as background and the other images to be on top level, I will also need to move those top level ...