Motorola Droid :: Orientation Change Hang-ups

Jan 27, 2010

I get a text, pull my phone out of the belt holster.....and read it in normal orientation. With the phone unlocked, I read the text(s) and decide to respond. About 75% of the time, it either takes 5-10 seconds to change orientation when I go to horizontal mode......or it won't even switch at all. It gets so frustrating I feel like throwing the phone.

Fwiw, a quick slide to expose the hardware keyboard will quickly change to horizontal orientation, but sliding it closed brings it back to default orientation, and doesn't seem to affect the speed of orienting back to horizontal.

Motorola Droid :: orientation change hang-ups


Motorola Droid :: After Installing Flash - Won't Boot Up At Times - Screen Orientation Won't Switch - Lock-ups, Pages Hang - Multiple Reboots

Aug 21, 2010

Installed flash 10.1 today and since then...won't boot up at times, screen orientation won't switch, lock-ups, pages hang, multiple reboots etc. How do I uninstall this? I've looked on the phone and tried to research online without any luck so I have turned to to the real experts. Help!
Thanks in advance.

View 4 Replies View Related

Motorola Droid X :: Hang Up Icon Unresponsive - Hang Up Call Quickly

Jul 19, 2010

This has happened to me several times in slightly different cases. Several times I've mistakenly placed calls to the wrong people (due to just messing around with the phone).

In a panic, I pressed the "back" button thinking that it will cancel the call. It didn't. I also tried the "home" button. Also no good.

I had to drag down the notifications bar to see the phone call in progress and finally access the red Hang Up button. That worked. The problem is that is is SLOW. And worse, one time the phone would not respond to the button press until after several tries (maybe the CPU was busy on something).

Anycase, that would appear to be a major problem with all these touchscreen-only smartphones - lack of a physical Hangup button.

Is there any workarounds to this? Perhaps some sequence or combo of the existing physical buttons to forcefully hangup an errant call?

View 1 Replies View Related

Motorola Droid :: Any Way To Make Home Screen Change Orientation?

Nov 11, 2009

Is there a way to make the home screen change orientation with the accelerometer? On my phone, it will only change when I pull out the physical keyboard, which is not really what I'm looking to do most of the time.It changes just fine in all other applications, but the home screen doesn't. Is this a flaw with my phone or a design decision?

View 6 Replies View Related

Motorola Droid X :: Change Orientation Limits / Bottom Keys To Left

Jul 16, 2010

First post here. First Android phone as well. Picked up the X yesterday and am enjoying it. One quick question though, can I not turn the phone to the right (bottom keys to the left) to change the orientation? Things only turn when I turn the phone left or straight up, not right or upside down.

View 1 Replies View Related

Android :: Orientation Change - Dialog Above Activity With Fixed Orientation

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

Motorola Droid :: Not Able To Hang Up After Call

Nov 11, 2009

Sometimes after I am done with a call the screen is black and I click on the screen to get it to light up so I can end the call with no results. I than push the little top button to turn on the phone by than the call has confused the voicemail I am leaving and I have to redo the message. I am leaving or push 1 or 2 go through all of that. Anyone else with the black screen and having to "unlock" the device issues? I want to never push that button on the top unless I lock it.

View 2 Replies View Related

Motorola Droid X :: How To Restart Your Phone After Hang?

Jul 24, 2010

So my Droid X hung just now. Is there a reset button somewhere or do I just do the old school approach and take the battery out?

View 1 Replies View Related

HTC Droid Eris :: Why Does Phone Change Orientation In Certain Apps?

Dec 18, 2009

So why does my phone change orientation in certain apps (email particularly) even though I don't rotate the phone? Is there a setting for this I just cannot find?

View 7 Replies View Related

Motorola Droid X :: Cannot Hang Up Phone Call When Outdoors

Aug 25, 2010

When on a phone call outdoors and I want to hang up, I pull the phone away from my face and the display stays black. The proximity sensor is not sensing that I've moved it away from my face. I can't hang up the call. If I hold the phone above my head with the display facing toward the ground the display comes right back.

It works perfectly indoors. I've compared this to another phone and the other worked perfectly. I've read that the UV rays from the sun can interfere with the proximity sensor. Verizon does not recognize this as a problem but if you Google it you will see this problem goes way back.

View 4 Replies View Related

Motorola Droid :: Blank Screen Can't Hang Up With Out Sliding / Fix It?

Dec 27, 2009

yup thats it, I get a call talk then when its time to hang up get a black/blank screen and will not work till i slide it open ... sometimes i have to take out the battery and reset it but not as often since the upgrade

View 13 Replies View Related

HTC Droid Eris :: Any Way To Change Orientation Of Pictures In Photo Album

Feb 25, 2010

I suspect that the answer is no, but here goes. Does anyone know of any way to change the be orientation, of pictures in the photo album widget without editing the file on the computer?

View 11 Replies View Related

Motorola Droid :: Force Closing - Type In Text - Hang Up

Dec 1, 2009

It seems to REALLY "hang up" sometimes. Like I try touching to type in text, and it will take FOREVER sometimes to pull up the virtual keyboard. And multiple touches at times. Other than that, it's force closing my apps a LOT. iMusic, Messaging, Facebook... all force close regular. Tried removing apps, no change.

View 5 Replies View Related

Android :: Change Intent Bundle Data Before Activity Recreated After Orientation Change

Jul 30, 2009

I have a notification that starts my activity and passes a messages using the intent's putExtra() function. The message is then displayed to the user in the activity's onCreate function. When the application is restarted due to a orientation change, the message is shown again as it is still in the intent's bundled data.
How can I remove the extra data?

I tried the following:

Bundle bundle = getIntent().getExtras();
if (bundle.getBoolean("showMessage")) {
// ... show message that is in bundle.getString("message")
// remove message
bundle.remove("showMessage");
}

But the message will still be shown after the orientation changed, seems like the intent used is not the one I changed, but the original one. The only workaround I found is to save the showMessage additionally in onSaveInstanceState(). Is there another way? Or is this the way to go?

View 2 Replies View Related

Android :: Change Widget Dimensions On Orientation Change

Jul 22, 2010

I have a widget which has say, a dimension of 294*72(portrait). But when the orientation is changed, I need to change this dimension of the widget to another dimension which would look good on the landscape orientation.

View 4 Replies View Related

Android :: Change Background After Orientation Change

Jun 8, 2010

I have an image set as my background and when it is vertical, the image looks fine. However, when the orentation is changed, the image get streched out. If there a way that I can change the image based on the orentation of the device?

View 4 Replies View Related

Motorola Droid :: Froyo Roms - DLing Programs And Updating - Download 100% Then Hang Wont Install

Jul 6, 2010

So, since switching to 2.2 roms I've been having issues with DLing programs and updating etc from the market. Program will download 100% then hang, wont install. often I have to re-download multiple times until the install starts.

View 4 Replies View Related

How To Change Orientation For AVD

Feb 6, 2013

What I want to do is to change the default Portrait to Landscape.I have one AVD setup using fwvga device, I went to Setings -> Display, only saw Auto-rotate screen checked (by default), unchecked, it does not work.

I'm testing out a web app. It works but if the orientation changes to Landscape it would work better.

View 4 Replies View Related

Change Orientation At Run Time

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

Android :: Change Orientation Of AlertDialog

Mar 25, 2009

I am building a AlertDialog in java code, so by default it is portrait but I want to show it in landscape orientation. How to do it in Java code?

View 2 Replies View Related

Android :: Screen Orientation Change

Oct 8, 2009

I notice when using the emulator that when the screen is flipped, I get a following logcat message:

INFO/WindowManager(589): onOrientationChanged, rotation changed to 1

How can I catch this in the code? I want to know whenever the orientation changes. I assume I have to set a listener, but I can't find an example anywhere.

View 6 Replies View Related

Android :: Dialogs On A Change Orientation

Mar 5, 2010

I'm doing an APP that shows some dialogs. Those dialogs are Alert dialogs, and when they are being showed if I change the orientation of the mobile I lost them...they are not being kept on the screen.

View 13 Replies View Related

Android :: Views - Orientation Change

Oct 1, 2009

Do Views know changes in orientation? In my case, I create popups from TextView and need to know when the orientation changes(porttrait<-- >landscape). I cannot depend on activity's onOrientationChange.

View 2 Replies View Related

Android :: Keep Screen On And Change Orientation

Feb 11, 2009

I am making an Android app which is currently coming along nicely - I've hit upon a couple of stumbling blocks.

1) How do I stop the screen from going dim/off and the phone locking while the application is running?

2) Can I force the phone to enter landscape mode on running my application?

View 2 Replies View Related

Android :: Possible Leak In Orientation Change

Jul 1, 2009

My app *sometimes* when orientation change, leaks Activities (getInstanceCount() increases from time to time) and i cannot figure out where references to my Activity or rather Context are kept - tried to use jhat but it couldn't help me much.

what is strange: it doesn't always happen on orientation change, so its even harder to fix.

btw when doing normal app life cycle - start, do something, exit - everything is ok - getInstanceCount() always returns 1.

View 5 Replies View Related

Android :: OnCreate And Orientation Change

Apr 28, 2010

I have an activity that checks stuffs online when it's created (is the GPS on and if not it asks if the user wants to turn it on).

The problem I'm having is that it is also doing it everytime I change the orientation of the screen.

I've read some comments on onConfigurationChanged() but is there a better way to be sure I'm checking the GPS only when the activity is first created?

View 4 Replies View Related

HTC Desire :: Change Orientation On Phone

Jul 11, 2010

I have seen online screenshots where applications like contacts etc either appear on full screen, or on a line like this.

At the moment I can only have them on full screen as they come from the people widget...

View 1 Replies View Related

Motorola Droid :: Keyboard Orientation Bug

Jan 21, 2010

It would be sweet if the Droid (or OS 2.0.1 as the case may be), when switching orientation from portrait to landscape, would keep the keyboard showing if it was already showing in the prior orientation.Often, I'll be typing a text in portrait mode and then realize that I'd prefer to type faster and more accurately.However, when I switch to landscape orientation, I have to click/highlight the text box in order for the virtual keyboard to show again.It's a bit of a hassle.Oh yeah, for the hardware keyboard lovers out there that suggest I use it instead.I hate the hardware keyboard.though curiously,the keypad is pretty nice for moving the cursor.

View 3 Replies View Related

Android :: Dialog Is Leaked On Orientation Change

Jun 23, 2010

built a simple app that displays an alertDialog with two buttons.The problem is it's not getting dismissed when i change orientation. After change i get a leak warning on debugger and the dialog appears twice(pressing back hides the first dialog, only a second back dismisses it completely).

View 7 Replies View Related

Android :: Change Eclipse Layout Orientation

Nov 6, 2010

I want to know how to change the orientation of my layout inside of eclipse but when I click the "layout" button it still shows it as a vertical layout.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved