[android-developers] Screen orientation problem at transparent activity.

2012-04-22 Thread Cheoloh,Park
When a run transparent activity after normally destroy fullscreen landscape activity which is not yet activityDestroyed, transparent activity is shown landscape. please see my reported bug. http://code.google.com/p/android/issues/detail?id=28927 Thanks. -- You received this message because you

[android-developers] Screen Orientation changes automatically in 2.2 emulator

2011-10-31 Thread KK
Hi All, I'm trying to create a simple stream media player app. Though the media player is working fine and I'm able to play shoutcast stream, but I'm facing a weird problem, screen orientation changes automatically in periods of : 2mins of start of app---15 secs---15 secs---2minutes and the cycle c

[android-developers] screen orientation.

2011-06-09 Thread Android K
Hello, I am trying to control the orientation from which I start. It works fine if I hold the phone in portrait mode and start my app. Otherwise dialog gets if I start in landscape position. Any help is appreciated. Thanks, Harsha *public* *void* onCreate(Bundle savedInstanceState) { *super*

[android-developers] Screen Orientation changes after Camera Application runs

2010-04-02 Thread bappa
Dear All, After running Camera Application in Eclair, when i just get back from Cam App, Home Screen and All other widget's orientation changed and rotate 90 degree till i restart hardware. So my question is where to update, so that Other's Orientation not changed during running Cam App.? Than

[android-developers] Screen Orientation in Android

2010-02-16 Thread uday kiran
Hi All.. Im facing some problems on Screen Orientation in android. In my application one screen contains Name,Age(as EditTexts). When i click on Name EditText internal Keypad is opening and some of the buttons are hiding due to that keypad. I have some questions regarding this. 1) Whether i need

[android-developers] Screen Orientation Change

2009-10-08 Thread Neilz
Hi all. 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, b

[android-developers] screen orientation not honoured when called from "share" ?

2009-09-04 Thread Jason Proctor
i set screenOrientation to "portrait" inside my , and usually this keeps things pointing the right way. however, i allow users to share pics & videos via the "share" menu in the various Camera apps etc, and it seems like if the host app is in landscape, then orientation doesn't change back to

[android-developers] Screen Orientation change and TabHost

2009-06-30 Thread UK Android Apps UK Android Apps
Hello, I have a TabActivity that shows the results of HTTP calls. There are four tabs. When the activity is created the HTTP calls are made and a ProgressDialog is shown. Whilst the HTTP calls are being made and the tabs added if the user changes the screen orientation I get a error in the Tab

[android-developers] screen orientation change not working

2009-06-20 Thread geopicmob...@googlemail.com
Hi! I'm having problems with applications not switching back to portrait- mode. Switching from portrait-mode to landscape-mode works fine, the first time - but after that it won't change back. This goes for all applications except the Home-Screen. I use Ctrl-F11 and/or Ctrl-F12 to change the scre

[android-developers] screen orientation crash

2009-05-07 Thread youssef henry
I have developed an Android application it is a game using opengl. when i change the screen orientation the application crash. Any one can help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Screen Orientation.

2009-03-24 Thread Suman
Hi all... Thanks for replies. Can any one tell me by which method i can check the screen orientation? I mean i want to check whether it is land-scap mode or portrait mode. Thanks in advance. Suman. --~--~-~--~~~---~--~~ You received

[android-developers] Screen Orientation change performance Question

2009-01-21 Thread j
>From reading Romain Guy's blog post, I understand keep static reference to a Drawable can create huge memory leaks. So what is the recommended solution if I don't want to reload my big Drawable image every time screen orientation changes? Currently my app takes >3 seconds to complete each orien

[android-developers] screen orientation question

2008-11-29 Thread joshbeck
Hello all, I am trying to determine exactly what happens when the screen orientation changes. (What I mean is, what happens to the lifecycle of an app when the user slides the screen out.) Reason: I show a dialog in my app. If the user slides the screen out, the app crashes with 'View not attac

[android-developers] Screen orientation woes

2008-11-27 Thread Stoyan Damov
Hi all, For my app the landscape orientation is useless, so I set my activity's "Screen orientation" attribute to "portrait". Even when the screen orientation changes to landscape, whatever I draw is simply drawn flipped 90 degrees, which is what I want. I also don't want my activity to get rest

[android-developers] Screen orientation from code / Permissions to use Surface.SetOrientation

2008-10-19 Thread Peter Bradshaw
Hello all, I'm trying to set screen orientation from code. I couldn't find any leads so I went digging and found Surface.SetOrientation. Trying to use it gave a permissions error referring to android.permission.ACCESS_SURFACE_FLINGER, so I added: To my manifest. However now I get: WARN/Packa

[android-developers] screen orientation values in Display class

2008-09-20 Thread Huebi
There are several classes where int values for screen orientations are available (Configuration, ActivityInfo). Unfortunately, none matches the values returned from the Display.getOrientation() method and there is no documentation on the returned values. I can take the ints and compare to them but

[android-developers] Screen orientation switch and data

2008-04-09 Thread Redhunt
Hi I am testing my application on screen orientation switch. The application loads data from the internet or the device and displays this data. The interface is working great on the switch do I really have to reload the data on every switch ? Shouldn't the switch only affect the interface? What a