0
votes
1answer
24 views

matrix.postRotate(90) in image rotation

I can only rotate the image once and when I click on the button again, the image freeze and doesn't rotate. Please help me. try{ //Bitmap bMap; //Get ImageView from layout xml file img ...
0
votes
0answers
41 views

Image display rotated taken from camre with orientation protrait

My question is when I select an image from gallery some of image displays rotated in imageview.I want to display it as it is in gallery.And the problem why image is rotated is because that image is ...
0
votes
2answers
29 views

ImageView widget rotator

I'm developing an android widget application that displays some images in a loop. This widget simulates a website image banner rotator. I'm using a ScheduledExecutorService to execute the task that ...
1
vote
3answers
178 views

Android zoom and rotate image view

Can anyone tell me example of image view which accommodates both zoom and rotate functionality on pinch. I am not able to find it out.
0
votes
1answer
184 views

Android Animation with onDraw or ImageView?

I want to create an android game. Everytime someone touches the display the player should go up, and if he releases the player should fall. With the help of many tutorials I made it work but now I ...
0
votes
2answers
113 views

OutOfMemory error when rotating device

I made an image viewer project with a TouchImageView to implement zoom, drag and fling, a panorama viewer, etc. The viewer works fine, except that I get OutOfMemory errors when rotating the device, ...
1
vote
2answers
221 views

Rotate image in RenderScript

I need to rotate a image in renderscript and I have the following code: private ScriptC_flip mScript; Button flip = (Button)view.findViewById(R.id.flipVertical); flip.setOnClickListener(new ...
0
votes
2answers
226 views

Rotation of ImageView

I have an ImageView to which I have set an OnTouchListener to enable dragging and rotating it with finger gesture. My problem comes with the rotation, when I do so with my actual code, the result is ...
0
votes
2answers
150 views

ImageView that can be zoomed, dragged, rotated using finger gesture

I have to make an ImageView draggable, zoomable, and rotatable. Can anyone suggest a good tutorial for this, or sample code? I've found many, but most of them work with the matrix to change the image ...
0
votes
1answer
180 views

Rotating Android activity with ImageView shrinks ImageView to 1px

I have an activity where a user can choose a photo through an intent. The expected behavior is as follows: The image is sized to fill the parent width (minus margins). This sizing should never ...
0
votes
0answers
563 views

Android ImageView zoom, rotate, position change prob

I am using a the following code for a image, which will rotate, zoom in-out with pinch. User can make its position by dragging it. activity_img_match.xml <FrameLayout ...
1
vote
2answers
454 views

rotate imageview around its center without cutting off its edges

I've customized imageview but its just rotating its bitmap not the whole view. I don't want to use animation because I'm dragging imageview as well so moving animated imageivew results weird, so ...
1
vote
0answers
174 views

rotate textview with its background view

I've customized textview but its just rotating its text not its whole view. and I don't want to use animation because I'm dragging textveiw as well so moving animated textview shows weird result, so ...
1
vote
1answer
497 views

How to make ImageView following my finger and rotate when moving with ImageView in Android?

Dear android experts I would like ask you how to make ImageView rotation when moving with it. I have picture of the plane. When I touch_down and moving with it, ImageView follow my finger and also ...
1
vote
1answer
82 views

Rotating UIView with button in it

I'm trying to rotate a UIview which has in the top left corner a UIButton with the action: NSLog@"hello"; Now I rotate the UIView 180° and the button is now in the right bottom corner. But the ...
1
vote
2answers
590 views

imageview spinner/progressbar is not rotating

In my android app I try to implement my own progressbar like in some other apps. So if my customer click on a button the the refresh image is replaced with a rotating circle. But my circle is not ...
0
votes
1answer
297 views

Scale + Move and Rotate in Android (ImageView or something like that)

once again I'm back here :) I'm Searching for some kind of construct which is able to - Scale (Zoom), - Move and - Rotate I've found many solutions best one is "PinchImageView" around here, ...
1
vote
0answers
339 views

android rotate imageview onfling

I am creating a rotating knob it works fine when I rotate it slowly in clockwise or anticlockwise direction.but if I want to select a precise value then it become hard.Because I am adding a margin of ...
0
votes
0answers
368 views

Rotary Dialer (ImageView) Android

I am developing a Rotary Dialer for android just more like Rotary Dialer for android. Kindly help me out. What should i do already is a customized view but its rotation on touch is very slow. Finally ...
0
votes
2answers
147 views

Android ImageView to display list of images

On my iPhone app I use a UIImageView to which I set an array of images. The imageView starts with the images "animating" (the view displays each image for a period of time and then shows the next one, ...
2
votes
2answers
3k views

Rotate ImageView source from layout xml file

I have this ImageView in my layout: <ImageView android:layout_width="fill_parent" android:layout_height="wrap_content" android:contentDescription="@string/image_divider" ...
2
votes
1answer
135 views

keeping an image onscreen after rotation

My app generates a bitnap which is saved to the disk immediately after it is created. It is then displayed in an imageview. I want the UI of the app to be able to rotate, but the image is not restored ...
0
votes
2answers
234 views

ImageView will not trigger after click on the image, but will trigger after click on TextView

I have an ImageView in my xml file, i want to rotate the image when it's clicked. I use the following code to archive this: @Override public boolean onTouchEvent(MotionEvent event) { if ...
0
votes
1answer
482 views

Android: How to only rotate the drawable part of an imageView?

I have an ImageView object where both its Background and drawable attributes are set. I need to animate the drawable part of the ImageView while the background stay still. I can't find a way to do ...
1
vote
1answer
210 views

ImageView StartAnimation slows down the UI extremly

i have a big problem. i try to implement a kind of speedometer. i get the informations like RPM... every 10-100ms from the car over bluetooth. now i want to rotate the rpm needle to the right ...
1
vote
1answer
278 views

How to set OnClickListener to rotated ImageView?

I need to set an OnClick listener on a rotated rectangle ImageView. I've got problem when setting itafter rotation (angle 45). When i rotated my ImageView, region of the OnClickListener answers in the ...
1
vote
1answer
339 views

Android: My imageview is rotated, but its touch area isn't

I have a rectangular Imageview that responds to touch (it rotates by a specific number of degrees, using animation). The imageview has an ontouchlistener attached to it. However, once it has rotated, ...
4
votes
2answers
1k views

Rotating ImageView in Android < API Level 11

So in API Level 11 Google introduced the ability to rotate an ImageView (Yay, after they introduced the possibility to Animate such a rotation, yay smart thinking, yay!) But how should I go about to ...
0
votes
2answers
802 views

how to rotate an image in both directions in android

hi i need to rotate an ImageView in my app on touch and i am using the following code public android.view.View.OnTouchListener onTableTouched = new android.view.View.OnTouchListener(){ public ...
1
vote
0answers
324 views

New class which extends imageview does not rotate like regular imageview class?

package t.circle; import android.app.Activity; import android.content.Context; import android.graphics.Matrix; import android.graphics.PointF; import android.os.Bundle; import android.util.Log; ...
2
votes
1answer
1k views

How to set OnClickListener on the ImageView after rotation animation

I want to set OnClickListener on the ImageViews after I make them using addView method dynamically and rotate them in my application. But onClick method doesn't work properly when I pressed ImageView ...
4
votes
1answer
6k views

Android rotate imageview, i cant set the final position of imageview in onAnimationEnd()

I want to rotate an imageview from 30 degrees on each click on a button. On the first clic, i can set the animation properly but i can't succeed to update the imageview position after the animation. ...
2
votes
3answers
3k views

Rotate ImageView

I'd like to rotate an image 360 degrees continuously around a fixed point. I've seen a few examples already such as: RotateAnimation anim = new RotateAnimation(0, 360,150,150); ...
9
votes
2answers
6k views

Android - Rotating an ImageView with finger moves other views around

I've been learning Android for about two weeks now (expert in as2/3). I have created a simple LinearLayout1, which contains anImageView`, containing a png of a vinyl record (just a circular disc ...
4
votes
1answer
768 views

How to create a gesture controlled rotating image for a UI

I'm trying to figure out the best way to make an image rotate along with a user's finger dragging it left or right. I want to try and match the rate a user's finger is moving with the rate the image ...
0
votes
1answer
709 views

How can i use RotateAnimation to rotate a circle?

I want my circle image (ImageView) to rotate as the user touch and drag it. If the user drags it to the right, it should spin right and vice versa. Like when you spin a DJ disc, if you know what i ...
6
votes
4answers
7k views

How to rotate a drawable with anti-aliasing enabled

I need to rotate an ImageView by a few degrees. I'm doing this by subclassing ImageView and overloading onDraw() @Override protected void onDraw(Canvas canvas) { canvas.save(); ...
1
vote
2answers
3k views

Rotate an Android ImageView AND its background

Using this mechanism I'm able to successfully rotate the image in an ImageView. Works great. However, if the ImageView has a background image, that drawable is not also rotated. How can I also ...