Android :: Landscape Orientation Of Intent / Default Browser

Feb 18, 2010

I have application in landscape orientation, I set it as <android:screen Orientation="landscape"> in Android Manifest.xml. But when my app starts another activity - default internet browser - it starts in portrait orientation.

Android :: Landscape orientation of Intent / Default Browser


Motorola Droid :: Default Web Browser - When Click Links In Non-default Browser It Doesn't Send Links To Default One

Dec 15, 2009

I have installed Dolphin and like it, and I've made it my default browser, which is great. However, it is not only the system default, but it even opens links I click on in the Android provided browser (sometimes I both open). On your computer, when you click links in your non-default browser it doesn't send the links to the default one, and it shouldn't on this OS, either. Any ideas how to keep Dolphin as my system default browser, but not have it open links I click on in the Android web browser?

View 1 Replies View Related

Android :: Clockwise Landscape Orientation

Jun 17, 2010

Apparently, since Froyo it's possible to display app in clockwise landscape orientation (e.g. as demoed here: http://www.youtube.com/watch?v=R4YazuITS1o). However, I can't find anything related in the SDK. How can I display my app this way?

View 5 Replies View Related

Android :: Any Way To Force Landscape Orientation?

Jun 3, 2010

I'm new to android and i was wondering if there's anyway to force landscape mode at all times. Another way of saying it, i never want to see portrait orientation on my device. Is there any settings or apps that will force landscape mode at all times (unless an app requires portrait)?

View 1 Replies View Related

Android :: Switching From Landscape To Portrait Orientation

Apr 3, 2009

I want to display a table which would fit better in portrait view than in the landscape view. How do i instruct the emulator to change the orientation?

View 4 Replies View Related

Android :: Hierarchy Viewer In Landscape Orientation

Jul 13, 2009

Is there a trick to getting the Hierarchy Viewer to work in landscape orientation, or is it completely broken? In Pixel Perfect View it shows my screen sideways (i.e. in portrait aspect ratio), but when I click on the views in the explorer area it outlines the wrong areas of the screen. It looks like the outlining assumes the display is in landscape orientation, so it outlines where the views would be if it were oriented correctly. Obviously fixing the display would be the best solution, but barring that I'm OK tilting my head if only the outlining would agree with the display. Anyone know a way around this?

View 2 Replies View Related

Android :: Switching To Landscape Orientation Is Slow

Sep 4, 2010

This is getting called in on Create(), how can I speed up orientation switching? private void setupChartView(int position){
Quote my Quote = quotes Adapter.get Item(position);
this.symbol = my Quote.get Symbol();
String url = "http://chart.finance.yahoo.com/z?s=" + symbol + "&t=1d&q=l&l=on&z=l&p=s&a=v&p=s&Lang=en-US®ion=US";
if(chartImageView != null)
imageDownloader.download(url, chartImageView);
if(chartImageViewLandscape != null)
imageDownloader.download(url, chartImageViewLandscape);}

View 1 Replies View Related

Android :: Widget Different Portrait And Landscape Orientation

Jul 8, 2010

How did you support both landscape and portrait for appwidget? the layout of appwidget will never change when orientate the device from landscape to portrait. by the way, would you please tell me which device support both landscape and portrait for appwidget?

View 1 Replies View Related

Android :: Portrait Vs Landscape Orientation Using Sensor

Dec 18, 2009

I'm trying to detect landscape vs portrait orientation with the following:

public void onSensorChanged(SensorEvent event) { float pitch = event.values[2];
if (pitch <= 45 && pitch >= -45) { // portrait }
else if (pitch < -45) { // landscape }
else if (pitch > 45) { // landscape } }

Anyone have something more robust? It works pretty well, except if the phone is in a landscape orientation and the user starts to 'flatten' it out, starts thinking it's in the portrait orientation again.

View 7 Replies View Related

Android :: Startup Emulator With Landscape Orientation Instead Of Portrait

Jun 19, 2010

As u know, since android 1.6, there are not dirs on dirs like HVGA-L. Instead, there is only one dir like HVGA. That is, HVGA-P and HVGA-L are merged into one dir, HVGA. So, only HVGA can be selected and by default the emulator is started with portrait mode. Though I can press CTRL+F11/F12 to switch it to landscape mode, I do not like it. What I want is to start the emulator with default mode of landscape. Would anyone know how to do it?

View 3 Replies View Related

Android :: Way To Force Screen Orientation To Landscape Right As Of Froyo?

Sep 24, 2010

We currently use Activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_x) to set (and 'freeze') the orientation of our app. Froyo now supports two landscape modes tho and we'd like to allow our users to orient the app to 'landscape right' ... ie, the orientation obtained by turning a device naturally oriented to Portrait 90 degrees clock wise.

View 3 Replies View Related

Android :: Configuration Changed / Orientation From Portrait To Landscape?

Nov 10, 2010

While working on orientation change I have found that the onConfigurationChanged is not getting called when changing the orientation from portrait to landscape.But when I am changing from landscape to portrait the method is getting called. Is it the correct behavior because the onConfigurationChanged should by called whenever we are changing the orientation. (android:configChanges="orientation")? I have also found one strange behavior or error, When we are changing from portrait to landscape orientation the string value is displayed correctly(automatically by android system) but when in am changing the orientation from landscape to portrait the same string is displayed(i.e the string in landscape mode).The expected behavior is the string id specified in the portrait mode should be displayed.Is it an platform bug or something wrong in my code/programming.

View 2 Replies View Related

Android :: Change Screen Orientation From Portrait To Landscape?

Nov 1, 2010

I want to change the screen orientation from portrait to Landscape and vice-versa when the user shakes his/her android mobile phone, can any one help how to achieve this, because I do not know what event is fired, at the time his/her shaking thier android mobile phone. For Instance When the users touch the button in UI, touch event is fired, similarly when the user shakes his android mobile phone, what is fired.

View 3 Replies View Related

Android :: Screen Orientation Landscape Back To Portrait Not Working

Mar 20, 2010

I've racked my brain for hours over this issue. I have created a main.xml and designed one for the res/layout-land (landscape) format and another one for portrait in res/layout. When I rotate the emulator (ctrl-F11), my app rotates properly to landscape using the correct main.xml, but a subsequent rotation back to portrait just keeps the landscape mail.xml. This was done in a 2.0 AVD.. Out of desperation I downloaded the new Sample Code for Multiple Resolutions and had to create a new 2.1 AVD, to my surprise rotation with this app works correctly as expected. So I then decided to try my app on the 2.1 AVD and it works perfectly. So, is this a Bug in a 2.0 AVD or is there something special I need to be doing for < 2.1 SDK versions?

View 4 Replies View Related

Android :: Check Orientation On Droid Phone In Landscape / Portrait?

May 8, 2010

How can I check if the Android phone is in Landscape or Portrait?

View 3 Replies View Related

Android :: Change Emulator Screen Orientation To Landscape / Portrait?

Jan 2, 2010

How do we change emulator screen orientation to landscape or portrait?

View 2 Replies View Related

HTC Droid Eris :: Way To Get A Reverse Landscape Orientation?

Dec 18, 2009

I just got my eris yesterday (posting with it now), and I am finding typing in landscape quite uncomfortable while headphones are plugged in (i listen to a lot of music). The plug is vertical and doesn't allow me to grip the phone naturally. So, I was wondering if there was a simple way to get the reverse of landscape view. As in the eris's physical buttons would be to the left while typing instead of the right.

View 5 Replies View Related

HTC Droid Eris :: Landscape Orientation Availability

Jan 1, 2010

I am trying to figure out if landscape orientation should be available all the time, or only for certain programs and apps. My home screen does not rotate, for example. Neither does People (contacts) or my call screen when I'm using the phone. Any clarification would be appreciated.

View 2 Replies View Related

HTC Droid Eris :: Landscape Orientation Of Keyboard

Feb 10, 2010

I just got my Droid Eris. It was working fine to go back and forth between landscape and upright, until I calibrated the G-sensor. Now I'm not sure what's going on. I'm not sure if I've done the calibration correctly (I assume you just sit it upright on a flat surface?) or what. It will randomly go into landscape mode, but then I can't get it back upright unless I go to the home screen.

View 3 Replies View Related

HTC EVO 4G :: Unwanted Forced Landscape Orientation For Keyboard

Aug 3, 2010

I manually installed the Froyo update this morning. According to features' reports this should give me a 270 rotation. However, after choosing Automatic Rotation in settings, I found that anything with primarily text input defaults to and locks in landscape orientation. This includes google search, email, gtalk and text messaging. I prefer reading my email in portrait, so I can see more than 3 of the emails at a time. And since my text input is calibrated in portrait, landscape is just annoying me.

View 1 Replies View Related

HTC Magic :: Want Search Button On Landscape Orientation?

Jul 24, 2009

So here's what i have.
Model Number = HTC Magic
Firmware version = 1.5
Baseband version = 62.62S.20.18U_322.20.17
Kernel version = 2.6.27-357075db herbert@and18-2 +1069
Build Number = 2.15.901.4 146733 CL#30006 release-keys
alright. Here's what i would like to know. I bought this phone just recently. And i love it. I want to find out one thing. The landscape orientation does not have the send or search button. The phone is from TIM.

View 9 Replies View Related

Android : Find Orientation Of A Picture Taken With Intent MediaStore?

Feb 17, 2010

When I take a picture with Androids camera app, it detects the phone's orientation and saves the pic accordingly. So if i take a picture of a building, the roof will be on the topside, whether I hold the phone in landscape position or portrait.

However, when i use

Intent imageCaptureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

to get a picture, the camera app doesn't react to orientation. If i hold the phone vertically (portrait), the resulting pic will be rotated, with said building's roof to the left of the screen.

How can I set the intent so that the camera will take orientation into account? Or can I deduce in some way in what orientation the pic was taken and rotate it myself afterward?

View 1 Replies View Related

HTC Incredible :: Lock Screen Orientation In Portrait / Landscape?

May 5, 2010

Is there a screen orientation lock feature? I haven't seen it mentioned. In fact a search only turned up mention of it as a hardware button on the iPad. This would be great for using it while lying down, reclining, in the car.

View 2 Replies View Related

Sprint HTC Hero :: Home Screen Orientation To Go Into Landscape Mode?

Feb 19, 2010

I searched for this but couldn't find a solution. Is there anyway to get the home screen and subsequent side screens to go into landscape mode? I've seen some other Android Phones/Tablets doing this and would like to be able to do so. Or does anyone know if this will be an option in the 2.1 update? I heard that the Droid used to do this, and then some update messed it up, but then saw it going into landscape mode on the video they posted today of the Droid running 2.1.

View 5 Replies View Related

Android : Make Dolphin Default Browser For All Apps That Launch A Browser?

Jan 2, 2010

Its there any way to make dolphin the default browser for all applications that launch a browser? Like quick search?

View 13 Replies View Related

Android :: Switching Between Landscape And Portrait Mode Makes Intent Lose Values / What's Cause?

Feb 25, 2009

I am using Intents to switch between activities in my Android app. I am putting data in the Intent for use in the next activity. When I switch the phone between landscape and portrait modes, the values passed from the intent are lost and I get a NullPointerException.

Can someone please tell me what could be wrong.

There's a lot of code to post it entirely. But if someone needs to look at specific parts of code, I can post it here.

Edit
I solved the issue of state not being saved. But another problem I faced is that none of the buttons on the screen work after the orientation has been changed. On button press, I get this warning in LogCat

02-25 23:07:49.190: WARN/WindowManager(58): No window to dispatch pointer action 0

View 2 Replies View Related

Samsung Fascinate :: Phone Dims - Dialer Apps Menu Landscape Orientation?

Nov 23, 2010

When using Google Maps the phone dims out, how can I stop this? and one other question, can the dialer and apps menu go to the landscape orientation?

View 2 Replies View Related

Android :: Lock Phone Orientation In Android To Prevent Landscape Mode

Sep 4, 2010

Is this possible to do? Landscape mode distorts the background image, and therefore I would like to lock orientation to vertical on phones with accelerometers.

View 2 Replies View Related

Android :: Change Default Browser By External Browser

Dec 16, 2009

I downloaded an external browser and I would like to use it as my default, so if I click on a link, it opens it up in the new browser. Is there a way to go about doing this?

View 7 Replies View Related

Android :: Default Orientation Of Device

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







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