Android :: How To Get Device Orientation At Run Time
Oct 19, 2010
I have set my deveiec property to landscape in manifest file android:screenOrientation="landscape" No at runtime when I am trying to get the current orientaion of device using Configuration and ActivityInfo classes. Its always giving me landscape mode even my device is in portrait mode. Please suggest if you have any method which gives device orientation info at runtime.
View 2 Replies
Oct 30, 2009
How do I map the device Y axis to the screen Y axis?I can't figure this out.I'm the developer of Tricorder, and I'm trying to make it so that the accelerometer and magnetometer indicators I draw always point in the right direction.On the G1 phone with the slider closed, all is well.But when I open the slider, I end up showing that gravity is pulling me to the left (if the phone is held with the display vertical).So, I know that the device, and hence sensor, Y axis is always in the direction of the earpiece; and the screen Y axis changes when I open the slider.And I know that I can use remapCoordinateSystem() to change the device axes to match the screen axes.But where do I find out what the device's orientation is?In other words, how do I compute the correct values for the X and Y parameters to remapCoordinateSystem()?
Configuration.orientation seems quite useless.Suppose it is set to LANDSCAPE.What does this mean?Does it mean a device which is "naturally" portrait (i.e. the sensor Y axis points to the narrow end), and which has been turned into landscape mode?If so, which way was it turned?Or does it mean a device which is naturally landscape?In other words, LANDSCAPE could mean that the screen axis is off from the sensor axis by +90, 0, OR -90 degrees.Not much help.So how do I do this?Obviously I want my app to work on all devices, not just the G1 phone.
View 2 Replies
View Related
Dec 18, 2009
I have a camera preview activity, which is forced to stay in landscape mode.Is there a way I can tell the current orientation of the phone (not the screen orientation).Basically I want to know if the user is holding the phone in portrait mode, or in landscape mode, so I can rotate the output captured bitmap correctly (right now it just always outputs in landscape mode).
View 1 Replies
View Related
Sep 20, 2010
How does my android activity know (is there a callback) when there is a change in screen orientation?
View 1 Replies
View Related
Mar 21, 2010
How can i get the default orientation of a Android device.DROID has portrait as the default orientation whereas many of the android tablets have landscape as the default orientation. I want to determine the default orientation of a android device through an OS call and this orientation should be independent of the device position/ rotation.I will be of great help if somebody can suggest a mechanism to achieve the same.
View 11 Replies
View Related
May 14, 2014
I am new to Android development and in general mobile phone app development. I am trying to make an app which uses jpeg images as background. What should my image resolution be for it to be full screen? (eg. 1920x1080, 1280x720, 640x480, etc) Is it device specific?
I read about the resources and how you can place resources in 'drawable' folders and then Android selects the best match. But does it adjust the resolution when you change orientation at run time (tilt device)? Is there a setting in the manifest file for this? I set android:screen Orientation= "land scape" in the activity. Also does it crop the image if it is too large or adjusts it to fit on the screen?
View 1 Replies
View Related
Feb 5, 2009
How do i find the current orientation of the phone (portrait or landscape) How do i find the slider position?
View 2 Replies
View Related
Nov 17, 2010
I am building an application in which i need to start a service when the time is 7pm.
View 1 Replies
View Related
Jul 27, 2010
For the second time in a month I had to 'fix' text messaging by shutting my Droid Incredible down and rebooting. This was Verizon's suggestion.
I'm thinking an auto-reboot app, set up to reboot the DINC once a week, or even nightly, might be a smart thing to install.
Is there an auto-reboot app out there?
View 3 Replies
View Related
Sep 1, 2010
I need to wake my sleeping android device up at a certain time.
Any suggestions?
P.S. Wake up: turn display on and maybe unlock phone
View 3 Replies
View Related
Feb 13, 2012
Have been having issues with MyTouch 4G freezing. According to community area, minimum amount of available internal device space for Android device is 25 MB. This amount was first determined by Android to be for the G1 which only had 126 MB of internal device available space. My question is, with Android phones having more available space ie: MyTouch 4g 4GB ROM and 512 MB RAM, should the available internal phone storage be higher than 25MB in order to run properly? It would seem to me that if the phone had more available internal phone storage, the available space needs to be proportionally greater to run properly.
View 2 Replies
View Related
May 14, 2009
I have created an activity for my game which handles all orientation changes by itself and has a fixed "portrait" layout. Actually it uses the accelerometer and is rendered using 2D canvas methods. If the level has been completed I show up a highscore dialog in which the user can enter his name. The dialog is floating above the underlying level screen which gets blurred out nicely. This generally works.
Problem is that the dialog does not get rotated if the orientation of the phone changes. So even if the keyboard is exposed the dialog is shown in portrait mode instead of landscape. I have tried to use an activity with dialog theme instead but the behavior didn't change. After several tries it seems that I have found the reason for this: Once there's an activity with fixed orientation in the activity stack then all subsequent activities keep this orientation, too. They will not react on orientation changes anymore (e.g. if the keyboard gets exposed).
After upgrading to 1.5 SDK the described behavior changed a little bit. Now at subactivities indead react on orientation changes like expected. However, the need to have an opaque background! That means that neither dialogs nor activities with dialog theme will work. Those will stick with the orientation of the underlaying activity. So my workaround is to first start a sub-activity with an opaque black background. This activity then shows my highscore dialog on top. It looks quite okay but I wonder if there's a better solution? Is it possible to show a dialog above a fixed portrait or landscape activity which automatically adapts to orientation changes?
View 3 Replies
View Related
Mar 10, 2010
Does anyone know know how to programatically get the local date and time of the Android device? With that local date and time, does anyone know how to convert that to milliseconds from 1970 in UTC time?
View 2 Replies
View Related
Feb 12, 2009
i need to know about the LocationListener() working in the real time. Does it expect the user(device) to move in order to update the current location details or it automatically updates when ever the gps is enabled? Another query is regarding the getLastKnownLocation(). When is that last known location will be lost and thus returns null... (in realtime).
View 3 Replies
View Related
Sep 1, 2010
In my android application i would like to use time which do not come from device but a standard time that the user cannot change.
Is there any way to do this.
View 4 Replies
View Related
Nov 15, 2010
I know there is the Date() class built into the API, but line of code actually grabs the time of day?
View 3 Replies
View Related
Aug 22, 2010
Is there some way to have Eclipse NOT present the Android Device Chooser dialog every time I run the Android application I'm developing? I'm using a running Android device, not an AVD. There's got to be some place I can set my default device to be the Android device so that I don't have to double-click on the device entry in the ADC dialog everytime.
View 1 Replies
View Related
Jun 5, 2010
Do we need to launch the virtual device from eclipse every time we want to test our code? If yes, then is there any other method to make it a bit faster?
View 4 Replies
View Related
May 7, 2010
The quick start guide says 3 hours to charge, where as here.
HTC Desire - When I first receive my phone, do I need to charge the battery?
It states 8 hours. Which should I follow? Also, can I have it switched on while I charge so I can set it up? And I imagine I should let it fully discharge before charging it again, but how many times is this appropriate for? The first 2 or 3 or more times?
View 3 Replies
View Related
Jan 15, 2013
I would like to ask if it is possible to make app that would run on background and would change time on my device every few seconds. Lets say every 5 seconds change time by 3 hours (forward).
View 1 Replies
View Related
Aug 19, 2010
I understand how to force a specific orientation per activity in the android manifest. I would like to know if it is possible to allow the keyboard to change orientation even though the activity(the layout really) must remain unchanged.
View 1 Replies
View Related
Jul 17, 2009
I have a problem with working with the ORIENTATION values of the SensorManager. I would like to have some kind of 360°-value which directly shows me if the phone is in normal portrait (0°), landscape, portrait turned around (180°) or anything in between. So I could have, for example, an arrow that points to the floor (like gravity would do with a plummet) all the time, no matter how I tilt (sidewards) the phone. I thought this would be easy, but I'm pretty confused at the moment.
First of all, the X value of the orientation-array seems to correspondent with how I turn the phone, BUT: if it's completely uprightly standing, this value is about 60° ... why not 0° (or 90°, 180°, 270°), as I would expect?
Second: The value resets if I turn the phone and Android automatically changes screen orientation. So both in Portrait and in Landscape mode it will be sth. like 60° when the phone is in a 0° angel in real world. I set "android:screenOrientation" to "landscape" but this doesn't help anything :/
I want the app NOT to change orientation when I turn the phone, but I want it to get a continuous orientation value when I tilt the phone.
View 4 Replies
View Related
Aug 8, 2010
While using network provider for location updates, I found that it is the same time that I set on my device. Can it not be that provided by network as it goes when it is GPS. Or if network provider cannot provide time , then atleast location.getTime() should return 0 instead of device time. Is there any way to avoid device time, as I want to distinguish it.
View 1 Replies
View Related
Jun 19, 2013
i have rooted my Samsung Galaxy y duos lite[GT-S5302] , and installed jellybean 4.2 , i could not connect my device to computer and even Samsung kies displays : device is taking long time fo responding , how to reinstall 2.3.6 gingerbread ? or any other options?
View 8 Replies
View Related
May 29, 2009
My calls to getFromLocationName() always fail the "first" time I start my app. I catch the IOException which has reason:
Unable to parse response from server
Then I make a second call and it succeeds. Once things are "awake" all future calls to getFromLocationName() succeed, it's just that first one, and there is a ton of latency.
I haven't run this on a device yet, just in the emulator. This seems like a network problem, but it is so reproducible I'm thinking I'm not initializing something properly. I'm using Android SDK 1.1.
View 2 Replies
View Related
Aug 29, 2010
How can I make progress bar to measure time (pause/playing/total time) of different video which is streaming from website?
View 2 Replies
View Related
Nov 1, 2010
I am getting a date/time string from web in the format of "yyyy/mm/dd'T'HH:MM:SS'Z'" and it is in UTC. Now i have to identify the current time zone of device and then convert this time to my local time. (FYI, Currently, UTC time is 10:25 AM, in india current time is 3:55 PM)
View 1 Replies
View Related
Aug 25, 2009
at the moment I am thinking about a new app and need some information to decide whether to develop on Android or an alternative OS. I am particularly interested in "time to first screen", "boot-up time", "time to first Audio" and "app-start" (can be any from the android market or even one of the pre-installed ones) time? Does anyone know a source or perhaps measured those numbers?
View 9 Replies
View Related
Jul 12, 2009
I want to develop a game, so I need to know elapsed time at lots places in my game. For example, to measuring FPS. I see there is some example use "System.currentTimeMillis" to measure elapsed time. But I see the warning on document: http://developer.android.com/intl/zh-TW/reference/java/lang/System.ht... "This method shouldn't be used for measuring timeouts or other elapsed time measurements, as changing the system time can affect the results." So, if this method should not be used for measuring elapsed time, then what will be suitable?
View 2 Replies
View Related
Nov 11, 2010
So I wanted some DigitalClock help. I have set up a digitalclock, and here's what I want to do. Once the clock hit's a certain time, perform an action. How can I control the actions on the digital time to check for a certain time?
View 2 Replies
View Related