Android :: Multiple Screen Support Sanity Check
Dec 9, 2009
I have a project compiled with and targeting 1.5. I now want to support different screen sizes instead of letting android handle the scaling.That's all I need to do, right? All my layouts are using dip, so it should scale, and I don't want to mess with different size bitmaps just yet.
View 1 Replies
Mar 18, 2010
1.PC connected via wire works OK.. Nexus have been working fine since January,
2.Last few days I was having difficulty accessing my wifi via my Nexus.It would work, then it wouldnt, then it would.It "connects" gets an ip address, but I can't access anything.
3.Examining my old router (801.1b!) I accidentally snapped the aerial.I thought maybe it was partly broken anyway, causing the problem, so I bought a new router. (DLINK DIR-615)
4.Had to delete old connection on Nexus as it was WEP, this uses WAP.
5.At first,it appeared to work,then it wouldnt, then it would, then it wouldn't.It "connects" gets an ip address, but I can't access anything.
6. Today, I tried using my N800, and it works fine on the same desk as my Nexus, which doesn't. Just a few feet from the router.
View 9 Replies
View Related
Oct 19, 2009
So I'm trying to make sure my apps are compatible with the 1.6 SDK emulator skins WVGA800 and WVGA854. The Android Developers Blog post regarding this seems strange to me. The post talks about upgrading your app using the 1.6 SDK, then says this:
"Note that not all devices will be upgraded to Android 1.6 at the same time. There will be significant number of users still with Android 1.5 devices. To use the same apk to target Android 1.5 devices and Android 1.6 devices, build your apps using Android 1.5 SDK and test your apps on both Android 1.5 and 1.6 system images to make sure they continue to work well on both types of devices."
Now resource directory qualifiers (e.g. "res/drawable-mdpi/" or "res/ layout-large") don't work with the 1.5 SDK. So right now as a dev I have the choice to either:
1) Update my apps with the 1.6 SDK so that they are compatible with the various 1.6 emulator skins and the various hardware configurations coming out. If I do this, the updates will not be available to those users that still have 1.5, which is a "significant number of users."
2) Continue using the 1.5 SDK, without the available tools in 1.6, but try to somehow get my app to render properly in the various 1.6 emulator skins.
View 9 Replies
View Related
Apr 15, 2010
In my android application, I would like to support multiple screens. So I have my layout xml files in res/layout (the layout are the same across different screen resolution). And I place my high-resolution asserts in res/drawable-hdpi
In my layout xml, I have
CODE:...........
And I have put bkg.png in res/drawable-hdpi
And I have started my emulator with WVGA-800 as avd. But my application crashes:
CODE:................
View 1 Replies
View Related
Mar 6, 2010
I want to develop UI of the application which looks similar on all screen sizes. I have gone through the Android developer article regarding this. I am using supports-screen tag but then also the screen is displayed not displayed properly in the larger screens. The screen is displayed properly in HVGA and not in WVGA.
I have developed the application using Android 1.6 and set the minimum SDK version as 4. The application is running properly on HVGA avd but not on WVGA avd. Can I know the reason for it? Is there any solution for this? I want that the user interface of the application should look uniform in all the handsets.
View 3 Replies
View Related
Nov 11, 2010
I am trying to develop an app for which I want multiple screen support. I have read the Android article on Best practices for Multiple Screen Support. As per the article we have to follow 3 important things:
1. Mention support for different screen sizes (large, medium and small) and any density in AndroidManifest.xml.
2. Place images of 3 dpi's (120, 160, 240) in 3 folders res/ldpi, res/ mdpi and res/hdpi.
3. In layout's the dimension should be mentioned in "dip" units. Then Android will take care of the scaling on its own.
I have implemented all these points in my project. The images are picked up correctly from the appropriate folders. But the arrangements of the controls in not same. e.g. I ran the app on three emulators 1. Resolution 240*320 dpi 120. 2. Resolution 240*320 dpi 160. 3. Resolution 240*320 dpi 240. (All the emulator have same resolution but different density). The problem is the position of the controls is not same on all the three emulator. As per my understanding if the android:layout_marginLeft and android:layout_marginTop are mentioned in "dip" then this problem should not occur. As the density of the emulator increases the controls get placed more towards the right. Is it necessary that I provide layouts for all combinations of dimensions and density i.e. in layout-small, layout-large, layout- medium, layout-long,layout-notlong?
View 2 Replies
View Related
Jul 12, 2010
I am new to android. For getting more number of downloads. I will make application in Android 1.5 version. How can I support multiple screen resolution from android 1.5 version. Is there any problem develop application in Android 1.5 and release in market. Is it visible to higher version mobile market for downloading apk file.
View 5 Replies
View Related
May 24, 2010
How can I check for GPS support in-App to add a feature for those with Location services enabled?My concern is, I know I'd have to specify the tag in the manifest to declare that the app uses location services, but I still want the app to function for those without. I just want to check and, if the service is available, use it; otherwise just ignore that one feature.
View 1 Replies
View Related
Feb 20, 2009
I want to know when will Android support Multiple PDP.
View 15 Replies
View Related
Oct 2, 2009
I am trying to determine if I should go the ndk way to work on a music synth app, but first wanted to do a sanity check in the java layer by testing how many sine tones i could play concurrently, and so I tried this. And it's pretty low: I can only play about 4 or 5 tones before the obtainBuffer timeouts start increasing in number. Also, changing the media volume while the tones are playing disrupts the output.
View 3 Replies
View Related
Aug 7, 2010
I am having an issue understanding how to get Bitmaps from resources in density specific directories to scale properly when drawing them to a Surface View.If I have a resource in folder "drawable" I expect it to be scaled up when run on hdpi screens and scaled down on ldpi screens and left as is on mdpi or 1.5 screens.Likewise I expect anything found in hdpi when run on an hdpi screen to remain unscaled. However, there is some combination of settings that I am not getting right to do this seemingly simple thing.I am not running compatibility mode so my manifest supports all screen sizes with anydensity=true.I do not understand the BitmapFactory.Options fields of inScaled, inTargetDensity, and inDensity that I am thinking have to be set appropriately and slightly different for each resource decoded depending on which directory they were found in and what screen they are currently run on.
All I have been able to find is that if either inTargetDensity and inDensity are 0, no scaling occurs, but if not, scaling occurs such that inDensity matches inTargetDensity. Is this correct?I have no idea what valid settings are for these fields from the documentation other than ints.What are the integer values for LDPI, MDPI, and HDPI? And how do I determine the density of a resource in order to set this before I decode it? Am I way off base in my approach for drawing bitmaps from various resource directories on various screen sizes?
View 2 Replies
View Related
Sep 2, 2010
If I run my android application with htc magic with locale English. I find my application running properly and if I find to run it on Motorola droid with locale Korean, I find even my application(apk) cannot be installed on the device. Do android support different language? Is it because of different language OS version?
View 3 Replies
View Related
Oct 21, 2009
If an android device wants to support multiple cameras, then how does the API support this? Right now the framework API is a simple static method to create an instance of camera Camera.open(). I see couple of options:
1. Using camera.setParameters() to set a name/value pair that instructs which camera to choose?
2. It would be nice and cleaner perhaps if this was done right on the open() method perhaps with additional enum.
Obviously option # 1 would not result in any addition to the API. Does this use sound right to you to support multiple cameras?
View 4 Replies
View Related
Jul 27, 2010
I've just switched to launcherpro from sense, and the one thing I miss is the news widget. On sense in had three full page widgets devoted to it, and I need a replacement! Requirements are:
Full page widget
Multiple homescreen support
Simple aesthetics
Customisable news feeds
View 33 Replies
View Related
May 21, 2010
I'm an application developer, trying to develop a graphics application. I have been trying to get multiple windows each rendering their view up for quite sometime with no headway. I have gone through the documentation but have not come across any technique to enable multiple window support. Does Android have multiple window support as of now?
View 4 Replies
View Related
Jul 23, 2010
I am looking for a weather app that supports multiple cities like an iphone weather app. I have tried many apps, but could not find the one that I want.
View 9 Replies
View Related
Sep 25, 2010
I'd like to have two GMail (Google Apps mail, if that makes a difference) accounts active at once, both getting new mail notifications, and having the ability to send and reply through both accounts. My current solution is to simply forward all of Account #2's mail to Account #1 -- but then I can't send. Am I missing an option here? Surely this must be possible on Google's OS.
View 3 Replies
View Related
Nov 9, 2010
I want to know if it is possible to support multiple profiles within Android? To explain my question better, can we have two or more applications, which uses a Data Call, operating simultaneously in Android? For e.g. is it possible to have one IM, one e-mail application and one SNS(like Facebook) operating simultaneously in Android phones? If yes, I want to know how this is being handled within the Android Stack code. Since the platform code is open source, any suitable reference to any portion of the code handling this behavior would be perfect.
View 1 Replies
View Related
Sep 15, 2009
As suface flinger uses fb0 for rendering the image and video. i want to change the frame buffer devices dynamically for rendering the image on the screen one time on Fb0 other time on Fb1. i am looking into the surface flinger code. but we are not able to get the pointer where to change for this. can simeone please give us some pointer.
View 3 Replies
View Related
Apr 30, 2010
So is it just me or is there not simply 1 email folder to check emails from multiple accounts? I had it on the Moto Droid, but cannot seem to find it on the Inc.
View 4 Replies
View Related
Jun 12, 2010
I was wondering if the Evo supports multiple exchange accounts. I have a coworker that has a stock nexus one and he is able to add multiple exchange accounts effortlessly. I know that there are alternative solutions like touchdown and roadsync but why would a stock nexus one be able to and we are not. I would rather not have to install a 3rd party app to get the same experience. Is this a limitation of our version of android or did HTC take this out?
View 8 Replies
View Related
Oct 1, 2010
I bought an Android phone a couple of months ago, a Samsung Galaxy S, and it's been nothing but frustration. There's dozens of problems with the software/firmware and I was lied to by the network I bought it from. That and any attempt to buy a memory card for it yields a fake.I bought it to replace an aging old phone, and also to be an MP3 player.Allshare doesn't work. It will stream videos, but if I want to use to stream music it crashes each and every time without fail. It's as bad now as it was when I got it.It only has 16GB of memory, so it can't as it stands replace my MP3 player, I'll get a 32GB memory card for it sooner or later, and that will replace my 30GB MP3 player.I've tried 3 apps for playing music on it, the default one, Museek, and MixZing. They're all awful, and not designed with the way I play my files in mind. I sort them by file structure Artist/Album/files and I navigate to the files and expect to be able to play all. All three of those music players seem to want to use playlists. Are there any good music players I could get instead of them? I managed to delete all the MP3s on the phone half an hour ago when I tried to get the default music player to do anything like what I was trying to tell it.
I have a server set up in the house using Windows Home Server which has all the storage for the house on it. It can serve music pretty well - my main PC streams from it flawlessly with Foobar. My Android phone seems to have no way at all to do it short of Allshare, which is crap. I'm not interested in streaming it through Windows Media Player 12 which is what I'm forced to do with Allshare. If I could point the phone at a networked directory then that'd be fine... assuming there's a music player out there that actually works.Add to that the sheer stupidity of google calendar having no way to default to gmail calendar rather than the internal one on the phone, and no fix months later.I was going to have a bath tonight, and I thought I'd try again to get music working on the phone across the network. It's now 2 fucking hours later and I'm no further forward. The bath is cold though.
View 7 Replies
View Related
Aug 30, 2010
Did HTC add support for Multiple Exchange Accounts yet, or do you have to root and not use sense to get that?
View 3 Replies
View Related
Jul 7, 2010
Does the aria support multiple exchange accounts?
View 5 Replies
View Related
Apr 3, 2013
one can have multiple twitter, email etc. accounts on Android (running 4.1.2 on a Galaxy Note), but only one Facebook account. However, I have two of them and I need *both* their contacts sync'd to the contacts database (one is my "private" profile for close friends, the other is for work colleagues etc). Also, the built-in Facebook authentication has the same problem as the contact sync - I don't want to run games like Real Racing under my "public" FB profile.
Any way to make two FB profiles on one device? Maybe with something like a "virtualization"?
View 1 Replies
View Related
Dec 16, 2009
Is it possible to check the screen orientation (I mean whether the screen in landscape or portrait mode) while the outgoing call is going on.If it possible please suggest me how to achieve that.
View 2 Replies
View Related
Jul 17, 2010
My wife just got the Droid Inc, which was my first experience with the android os and I have to say, wow! I love it! My only issue is the Droid Inc doesn't support more than one exchange accounts and I have 6. I have read that the original Droid did support multiple exchange accounts, but haven't seen if the droid x does or not. Before I go through the trouble of ordering one and waiting on it to come in, can anybody confirm or deny if the droid x does support multiple exchange account and if so, is there a limit to that number.
View 11 Replies
View Related
Nov 13, 2010
I use my phone in English, but often send and receive text messages in Spanish (and other 2 languages...) What do I have to install/do/change to make the phone able to at least read and correctly render text messages received in Spanish?? I just get a bunch of "?" signs when there are special characters.
View 1 Replies
View Related
Oct 28, 2009
I have a few scenarios where I guess I am not alone with. There is no easy solution but this has to be on top of the list I think.
1. Suppose you have an application that is compiled with 1.5 and is working fine even if started on a 1.6 device. But you now want to support other resolutions, so you need to compile with 1.6. Problem: If I recompile and publish the new apk, the 1.5 users want see my applications. Users already downloaded my application can not upgrade. (will there be a "new version" available shown to them in the market?)
2. Lets say your application works fine on 1.5 and 1.6 and you decided to publish your application twice with different package names. "MyApplication 1.5" and "MyApplication 1.6" for example. Problem: The user upgrading from a older version does not know that there is a new version, because you published a new Application. You can write it into the description and tell the user to download the 1.6 version but many users might not read that Settings from the other application are lost. Your downloads are split into two applications, so you might not make it into the top ranks that easy . You might even need to publish 4 applications if you have a light and a paid version.
3. Now 2.0 SDK is available and you want to add multi touch features or any other new stuff for all 2.0 users. Problem: The above problems are getting even worse. There is no way to easily upload multiple apks for the same application. Having to rename the package is also not making this better. Every time svn freaks out and marks everything as new. Sharing code between versions is difficult because of that.
I don't know if its just "3" (provider in Austria), but I still have not received an official update to 1.6. Testing on the real device is not possible with a 1.6 image if you don't want to root your phone and update the rom manually. 2.0 will be on some devices soon, so there is definitely a need to support all 3 versions. There should be a faster update cycle for the users or a slower update of new versions meaning bigger steps. or We get an easier way to support multiple versions. This also means we need a way to know how many actual devices with version 1.5 / 1.6 / 2.0 are already sold and/or upgraded. If i know that 1.5 is only on about 5% of the devices left, then I can just stop supporting that version and upgrade.
View 4 Replies
View Related
Sep 16, 2010
Is there a way to check if your screen is a AMOLED display or SLCD. Without looking at the box it came in.
View 18 Replies
View Related