Tagged Questions
0
votes
0answers
8 views
Whenever I try to rotate imageview, it only rotates on axis
So I have been attempting to create a program that can drag, zoom and rotate a photo. The big problem I seem to be running into is that whenever I try to rotate the photo, it rotates along the corner, ...
0
votes
1answer
15 views
Android: image rotation not desire to resize
I have a code for rotate an ImageView, and good good.
The problem is that the size of image change in the rotate process and I desire that not happen.
The xml code of image
<ImageView
...
1
vote
0answers
24 views
How manage orientation of other applications from my app?
I see this app: https://play.google.com/store/apps/details?id=nl.fameit.rotate&hl=en
that can set the orientation of every app at start.
how could I set the orientation of another app? I have not ...
0
votes
1answer
35 views
AndEngine setRotationCenter moves rotated objects
I am trying to rotate an object from one point which is changing while rotating.
When I call to setRotationCenter(float,float) the IMAGE of the object moves to some arbitrary point. This only happens ...
1
vote
0answers
41 views
Rotating an image, angle by angle, and waiting for refresh
I'm trying to rotate an image a full rotation, a small angle-increment at a time.
Each proceeding rotation should begin after the previous rotation has been displayed.
How fast the rotation ...
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
1answer
70 views
Lock screen rotation for **ALL** Android Apps on a device
this is my first post so please correct me if I do any mistake regarding rules :-)
Heres my problem:
I am trying to set a fixed screen rotation for all Apps on an Android device
(not just my App). ...
1
vote
3answers
43 views
Sprite movement based on rotation
I have a sprite in Android OpenGL. This sprite (a small beetlebug) is always moving in a forward direction and I use:
sprite.setPosition(posX, posY);
Now I have a rotation method, when the user ...
0
votes
0answers
18 views
Android Bitmap rotation does not work on Motorola phone
I use the following code to rotate the output of the android camera:
public void onPictureTaken(byte[] data, Camera camera) {
try {
Logger.D(TAG, "PICTURE CALLBACK JPEG: " + data.length + ...
0
votes
1answer
39 views
Android app crash when rotating using AdMob
Hey i recently add a ads banner to my app
and after i added it all works fine... Until I rotate the phone and then the app crash
I added the following code to my original app code:
In my home ...
0
votes
1answer
43 views
Android emulator screen tilted 180°
I wrote an Activity whose orientation I wanted to be "portrait" only. I realized this by putting the
android:screenOrientation="portrait"
statement into the manifest.xml:
<activity
...
0
votes
2answers
47 views
getbounds when canvas rotate
I need to get the bounds of an image that is inside a canvas to detec if has been touched or not, but if I rotate the canvas the getbounds() maintain the same values, how con I get the correct values ...
0
votes
0answers
60 views
Android Animation - applytransformation - Do a camera translate on Z axes for half the time
I was trying to make a rotational cube using translations and rotations. I'm using a classe named Rotate3dAnimation.java provided in the Google samples. The rotation is working pretty well and i was ...
-1
votes
0answers
44 views
How to use different images in OpenGl Android? [closed]
I want to develop an App in Android for Car Models.
I am new to Android.
I want to show different views of a Car in 3D way. For that I have different images of a car.
I am using OpenGl for this.
But ...
0
votes
2answers
107 views
How to rotate video on rotate of device in Android?
I am working on a project where I am showing a live streaming video in android. I am showing the video in video view. I want to provide facility of landscape and portrait video view to the user. If I ...
0
votes
0answers
48 views
Swiping from rotated middle fragment shows only black screen
I have a ViewPager with three fragments. The problem is that on the start, I'd like to have second fragment as default, so I set
setCurrentItem(1)
As I don't want the fragments to be newly created ...
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
1answer
119 views
Rotate object by 360 degrees with different Images in Android?
I am creating an Android App to rotate an image of Car by 360 degrees.
I want to rotate the object with different image files of same object (eg Car)
Here is the Example that I want to implement in ...
0
votes
0answers
60 views
SlidingDrawer on Android 2.3.5 not showing from left after rotation
I have this sliding drawer and I'm using rotation to make it slide from left. It works great on OS version 4.x. Drawer thumb shows on left and drawer slides in from left to right.
On my HTC Desire HD ...
0
votes
1answer
63 views
Android Sensor Rotation Angle
I'm trying to detect the y-axis rotation angle (forward-backward tilt when holding in landscape) but I'm obviously doing thins wrong as the onSensorChanged event never gets triggered
@Override
public ...
1
vote
1answer
54 views
Quaternion object rotation
Since few days I'm trying to implement quaternion rotation for android OpenGL ES. I would like to get function with input quaternion(x,y,z,w). This function will be set rotation for GL10 object. GL10 ...
0
votes
0answers
50 views
get current coordinates of line drawn by using canvas after rotating it in android
hi i am new in android actually i m developing a four side polygon with different angles and different sides but the problem in that when i am rotating any side of polygon to certain degree the end ...
2
votes
1answer
72 views
Drawables pulled from wrong resource folder on rotation
Pulling my hair out here. So I'm working with an application that has several types of drawables, and I have them in a structure like so:
res/
//Portrait resources
drawable-mdpi/
...
0
votes
2answers
125 views
Android bitmap rotate canvas crops/cuts image
bmpAndroidMarker = BitmapFactory.decodeResource(context.getResources(), R.drawable.t_move2);
bmpAndroidMarkerResult = Bitmap.createBitmap(bmpAndroidMarker.getWidth(), ...
0
votes
2answers
49 views
Rotate Image without losing resolution
I am having problem while rotating an Image Bitmap.When I rotate Image it lose its resolution.I want to rotate image everytime when user click on Button.Code on button's click is here:
...
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
2answers
23 views
How to manage socket/http post while screen is rotating on android?
I have a form where a user fills and hits OK button to submit data to remote site over HTTP.
Right after hitting OK button, when user rotates the screen, socket is shut down automatically.
Should i ...
1
vote
1answer
86 views
Android content of ViewGroup disappears when rotationY is animated
I created an animation that flips a "card" to its backside.
To achieve this, I used setRotationYBy() and setVisibility() on each, the front, and the back.
The animation itself works fine, but when the ...
0
votes
1answer
33 views
Changing the center of a quad for rotation purposes in OpenGL ES 2.0
All
Using the code below my quad moves position. However, I don't want this to happen, all I'm after is for the center of rotation to move.
Does anyone have any ideas?
Note, If I place a translate ...
0
votes
1answer
142 views
Projection Matrix or not? (OpenGL ES 2.0)
Is it necessary to use a projection matrix like so:
Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
and
Matrix.setLookAtM(mVMatrix, 0, 0, 0, 3, 0f, 0f, 0f, 0f, 1.0f, 0.0f);
// ...
0
votes
2answers
143 views
Using Matrix.Translate in OpenGL ES 2.0
Edit - Added more code
Having a lot of problems attempting to correctly rotate my quad using OpenGL ES 2.0.
It always seems to rotate around the centre of the screen co-ordinates. I'm trying to get ...
0
votes
3answers
205 views
Correct vertex shader code? OpenGL ES 2.0
Edit Code added, please see below
Edit 2 - Screenshots from device included at bottom along with explanation
Edit 3 - New code added
I have 2 classes, a rendered and a custom 'quad' class.
I have ...
0
votes
1answer
19 views
Change default direction for rotation
I want to rotate an image from left to right and right to left direction.
I am using the following code to rotate the image.`matrix.postRotate(90);
bitmap = Bitmap.createBitmap(bitmap_rotate, ...
0
votes
0answers
102 views
Rotating an image like a compass (not working)
I want to rotate a specific image on an acitivity. I found everything where we set the contentview to an image, or drawing something, but again full screen.
sensorChanged method:
float[] mGravity2;
...
0
votes
0answers
51 views
canvas.rotate() does not work when try to rotate a View
I have my own class that extends View and override @onDraw(Canvas canvas). Inside the canvas I draw a bitmap. From some reasons I want to rotate hole canvas and not the bitmap inside it but the final ...
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.
8
votes
1answer
136 views
using “USER_ROTATION” for API lower than 11 in Android (workaround?)
In my app I'm using the following command :
Settings.System.putInt(getContentResolver(), Settings.System.USER_ROTATION, m_lockedInOrientation)
As mentioned in the Android site this will set the ...
1
vote
2answers
122 views
Keeping system in phone correct orientation when disabling 'auto-rotate' in Android
It looks like a bug in the Android system but i'm note sure :
in my app i use Settings.System.putInt to disable auto-rotate, sometimes whenever i fire the command, the orientation changes to another ...
0
votes
2answers
452 views
Simple textured quad rotation in OpenGL ES 2.0
Edit 6 - Complete re-write in relation to comments/ongoing research
Edit 7 - Added projection / view matrix.....
As I'm not getting far with this, I added view/projection matrix from the Google demo ...
0
votes
0answers
38 views
Rotating Bitmaps on canvas seems chopped
I am trying to rotate some bitmaps(7 bitmaps) together on canvas. They are all of different sizes. I am using following code to rotate these bitmaps:
Matrix matrix = new Matrix();
...
0
votes
1answer
54 views
how to roate surfaceview 90?
I'm developing a movieplayer on android 4.2 and now facing a problem that how to rotate a surfaceview with 90 degree,the surfaceview is used to render decoded video,a difference from common use is ,i ...
0
votes
1answer
228 views
Create specific layout for 7 inch tablet for portrait /landscape changing the layout
I'm developing the typical tablet app with fragments: a list of elements on the left side and the content on the right side. For the smartphone version I show only one fragment with the list of ...
2
votes
3answers
56 views
Saving the activity state when rotating the screen
I'm working on an android app, right now I limited the user to only use horizontal view for all activities.
I want to be able to give the user the option to rotate the screen, but when I do that, the ...
2
votes
1answer
223 views
OpenGL ES 2 Translation after rotation
I'm working on a augmented reality app in android. At the moment I have some problems with the Open GL ES 2.0 stuff..
First I want to rotate an object and then translate it but it doesn't work.. ...
0
votes
0answers
29 views
Bitmap is cutting from sides after rotation using matrix
Inside a view, I am drawing a bitmap. User can rotate the bitmap with two fingers and can save the rotated bitmap to gallery. I am using Matrix to rotate bitmap. It is rotating properly but when app ...
1
vote
2answers
115 views
How to handle stickers with resize and rotate functionality?
I am currently developing an application which will allow user to add stickers (hat, hairs, spectacles etc) on image. User can resize that sticker or can rotate that and move also. See image.
I ...
0
votes
0answers
60 views
Add compass to mapview in rotate view
I created a RotateView of a MapView (like compass) using the code:
mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
mRotateViewContainer = (LinearLayout) ...
0
votes
1answer
110 views
android dialog crashes on rotate
in my app when I have a dialog open and the device rotates, the app crashes.
I thought I was already doing everything to handle rotations myself
In all my activities I have this enabled in the ...
7
votes
3answers
5k views
Rotating an ImageView like a compass (with the “north pole” set elsewhere)
I'm stumped regarding how to implement a "personal compass", ie a compass that points to a specific bearing instead of the standard "north pole"... unfortunatly, my current attempt has come out wrong ...
400
votes
16answers
160k views
Activity restart on rotation Android
In my Android application, when I rotate the device (slide out the keyboard) then my activity is restarted (onCreate is called). Now, this is probably how it's supposed to be, but I do a lot of ...

