[android-developers] Re: I don't see how to do this....

2010-01-06 Thread furby
Aha! Thank you! As soon as I read your response it hit me - I am testing on the emulator, which will always give me a null provider! Which means no matter what I do I am gonna get a null which means I can't get a latitude... Which shows that I have had WAY too much time off of programming between

Re: [android-developers] Re: Using an image in a listview

2010-01-06 Thread Patrick Plaatje
Hi, i've used the holder method, but adding or omitting this didn;t give me an increase or decrease in performance, my getView method is below: @Override public View getView(int position, View convertView, ViewGroup parent) { // A ViewHolder keeps

[android-developers] Re: How to delete applications from the Android simulator.

2010-01-06 Thread polyclefsoftware
Delete apps on the emulator just like you would on a hardware phone. Press the Menu button. Select Settings, then Applications, then Manage Applications. Select the app you want to uninstall. There will be an Uninstall button for that app. Just click it and it will uninstall. Alternatively, you

[android-developers] Re: Can someone with a Motorola Droid call AccountManager.getAccounts() please?

2010-01-06 Thread polyclefsoftware
Well, an Android dev in Google's online office hours helped me troubleshoot this today. It turns out that the reason the authToken from the AccountManager wasn't working was because it was expired. It was dated Dec. 9th, which is probably the day I first got my authentication code working. I

[android-developers] Targeting =1.6(!), can't get rid of READ_PHONE_STATE and WRITE_EXTERNAL_STORAGE

2010-01-06 Thread greg1x
Hi! I'm trying to get rid of the mentioned auto-permissions in my signed apk, but I can't. I know it is an issue with targetting 1.5, but this isn't my case. I'm targeting =1.6. I've checked everything: In my manifest: ?xml version=1.0 encoding=utf-8? manifest

[android-developers] Re: Will native libs built with the NDK work with the Nexus One?

2010-01-06 Thread ITWizard
Ciao Francois, you will not be able to debug/step-into the native lib. The best thing you could consider to add log-files to your native lib, and check the logs if crashing. JVM is slow, compared to C, but if your game is turn-based this is not an issue - in this case i would recommend Java for

[android-developers] A log collector - Bug collector per android developers

2010-01-06 Thread vekexasia
Ciao ragazzi.. Nel mio tempo libero grazie ad una bronchite acuta asmatica son riuscito afinire un progetto che son sicuro vi interesserà. In pratica ho creato una libreria che permette di tracciare i bugs delle vostre applicazioni online. Mi spiego meglio.. La libreria, una volta importata nei

[android-developers] Re: Performance issue: Dalvik VM is 20x slower than most modern Java VMs

2010-01-06 Thread Ecthelion
Do you have any references for the statement below? And does next sdk release refer to the Android 2.1 SDK? Thanks On 6 Jan., 19:49, Fred Grott(Android Expert, http://mobilebytes.wordpress.com) fred.gr...@gmail.com wrote: the next sdk release is suppose to have a Dalvik JIT i nit doubling

[android-developers] A log collector - Online Bug collector For android developers

2010-01-06 Thread vekexasia
Hi Guys, In my free time (thanks to my asthma sickness) i was able to complete an old project of mine that i think would interest a lot of you. Long story short: I created a library which is able to track your application crashes directly online! The library, once imported on your android

Re: [android-developers] A log collector - Bug collector per android developers

2010-01-06 Thread TreKing
English Translation, per Google Translate: Hello guys .. In my free time thanks to an acute asthmatic bronchitis are Afini managed a project which I'm sure will interest you. Basically I created a library that allows you to track bugs your applications online. Let me explain .. The library, once

Re: [android-developers] A log collector - Bug collector per android developers

2010-01-06 Thread TreKing
Oh, apparently already posted an English version ... weird. Don't mind me... - TreKing - Chicago transit tracking app for Android-powered devices http://sites.google.com/site/rezmobileapps/treking On

[android-developers] Re: How to test if app is shown on Market for all screensizes

2010-01-06 Thread ChristianF
Justin? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options,

Re: [android-developers] Re: Can someone with a Motorola Droid call AccountManager.getAccounts() please?

2010-01-06 Thread Mariano Kamp
It turns out that the reason the authToken from the AccountManager wasn't working was because it was expired. It was dated Dec. 9th, which is probably the day I first got my authentication code working. I guess it cached the authToken and has been using the same one ever since. How do you

[android-developers] Image not dithering

2010-01-06 Thread abhi
Hi, I am using this image http://android.amberfog.com/wp-content/uploads/2009/11/001.png from this page: http://android.amberfog.com/?p=247 to test dithering on my android phone. However, when I used the android:dither=true option in my XML file and when I added android:tileMode=repeat as well,

[android-developers] Re: SAXParser invalid token exception because of '' inside attribute value

2010-01-06 Thread tlegras
(wow, it seems it took 1 or 2 day before these thread appears here, so sorry for the multipost i posted another one in the mean time) Thanks for your help. I tried first 3) but give up and then tried pure nekohtml solution which works perfectly well :) Thierry. On 3 jan, 01:18, Frank Weiss

[android-developers] Re: Using an image in a listview

2010-01-06 Thread Brion Emde
I see some problems here: // Bind the data efficiently with the holder. holder.titleText.setText(Html.fromHtml(((FeedMessage)Items.get (position)).g etTitle())); holder.descriptionText.setText(Html.fromHtml(((FeedMessage)Items.get (positi on)).getDescription())); Drawable d = null; FeedMessage fm

[android-developers] Re: A log collector - Bug collector per android developers

2010-01-06 Thread vekexasia
Yes. I made a mistake.. Posted in italian :( Btw, what do you think about that ? On 6 Gen, 21:53, TreKing treking...@gmail.com wrote: Oh, apparently already posted an English version ... weird. Don't mind me... ---

Re: [android-developers] Re: Using an image in a listview

2010-01-06 Thread Patrick Plaatje
Hi Brion, if this arraylist would be a rather big list, it would be costly indeed, and it is a good suggestion. This list consists of just 10 items (feedmessage objects) though. These feedmessages are just a set of getters and setters (of just small String objects) and are not doin any costly

Re: [android-developers] A log collector - Online Bug collector For android developers

2010-01-06 Thread Dan Sherman
Not trying to take anything away from you, just wanted to mention theres another set of code doing the same remote tracing: http://code.google.com/p/android-remote-stacktrace/ On Wed, Jan 6, 2010 at 3:46 PM, vekexasia vekexa...@gmail.com wrote: Hi Guys, In my free time (thanks to my asthma

[android-developers] Re: Targeting =1.6(!), can't get rid of READ_PHONE_STATE and WRITE_EXTERNAL_STORAGE

2010-01-06 Thread Maps.Huge.Info (Maps API Guru)
Are you trying to load you app outside the market? If so, then this is more of a feature than a bug. I believe that Google has added these permissions into non-market apps. If you use the market, the permissions are correct. -John Coryat Radar Now! What Zip Code? -- You received this message

[android-developers] Re: How to delete applications from the Android simulator.

2010-01-06 Thread John Gaby
Thanks. On Jan 6, 11:57 am, polyclefsoftware dja...@gmail.com wrote: Delete apps on the emulator just like you would on a hardware phone. Press the Menu button. Select Settings, then Applications, then Manage Applications. Select the app you want to uninstall. There will be an Uninstall

[android-developers] Re: I don't see how to do this....

2010-01-06 Thread Maps.Huge.Info (Maps API Guru)
As another side note, if you want to preemptively prevent force close messages, the best thing to do is test everything for a valid data type before using it. Many unexpected conditions can be caught and handled if you do this, failure to test everything that may have an unexpected value will at

[android-developers] Re: Image not dithering

2010-01-06 Thread abhi
BTW I am using a 320x640 device. On Jan 6, 3:03 pm, abhi rkabhi1...@gmail.com wrote: Hi, I am using this imagehttp://android.amberfog.com/wp-content/uploads/2009/11/001.png from this page:http://android.amberfog.com/?p=247to test dithering on my android phone. However, when I used the

[android-developers] Re: Crashed Service not restarting - !!! FAILED BINDER TRANSACTION !!! - Dianne could you help ?

2010-01-06 Thread Derek
Hi again, Our service is still crashing for some reason not related to our application. To make sure it's not RunTime exception we've used a : try { // Get WakeLock // Perform actions } catch (Throwable t) { // log error (if any) } finally { // Schedule a new service startup and

[android-developers] Re: A log collector - Online Bug collector For android developers

2010-01-06 Thread vekexasia
Yes. But it does not group all the exceptions per package and versions... And it requires a working web server.. Did you take a look to the Dashboard and Detailed information with the demo credentials? On 6 Gen, 22:23, Dan Sherman impact...@gmail.com wrote: Not trying to take anything away from

Re: [android-developers] Re: A log collector - Online Bug collector For android developers

2010-01-06 Thread Dan Sherman
I didn't, I'm pretty happy with the remote stacktrace (we made a bunch of upgrades to it for our own apps), and have no real need to swap, I just wanted to make sure the option was out there for people looking for a solution :) On Wed, Jan 6, 2010 at 5:10 PM, vekexasia vekexa...@gmail.com wrote:

[android-developers] Re: Can someone with a Motorola Droid call AccountManager.getAccounts() please?

2010-01-06 Thread polyclefsoftware
On Jan 6, 3:01 pm, Mariano Kamp mariano.k...@gmail.com wrote: It turns out that the reason the authToken from the AccountManager wasn't working was because it was expired. It was dated Dec. 9th, which is probably the day I first got my authentication code working. I guess it cached the

[android-developers] Labeling points on a map

2010-01-06 Thread Becca
Hi, I'm trying to add a label to each of the points on a map that I've created. Setting the title and snippet values of the OverlayItem don't seem to automatically cause these labels to appear however. I would've thought this would be a pretty simple and common requirement... Am I missing

[android-developers] Re: Targeting =1.6(!), can't get rid of READ_PHONE_STATE and WRITE_EXTERNAL_STORAGE

2010-01-06 Thread greg1x
I've published the application and you're right. There are no extra permissions required through the market. Thank you! On jan. 6, 22:35, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Are you trying to load you app outside the market? If so, then this is more of a feature than a bug.

[android-developers] Re: Performance issue: Dalvik VM is 20x slower than most modern Java VMs

2010-01-06 Thread dm1973
Your tests are pretty useless. Most modern compilers will optimize away all of that code so what you are measuring is the overhead of your timing code. That being said interpreted byte code is slow. Either write native code where it matters or wait for JIT. On Jan 6, 9:08 am, Biosopher

[android-developers] No route to host issue, but Browser application works fine

2010-01-06 Thread Kenn Min Chong
Hey guys! So, this is very frustrating. I already have uses-permission android:name=android.permission.INTERNET/uses- permission in my manifest, but when my application tries to make a webservice call (I'm using a HttpURLConnection object to do this via connect() method), I'm getting an

[android-developers] Re: What does targetSdkVersion do?

2010-01-06 Thread Matt Kanninen
Got it. I don't think I need targetSdkVersion now that I have: supports-screens android:smallScreens=false android:normalScreens=true android:largeScreens=true / I want to target HVGA and up. On Jan 5, 8:10 pm, Lance Nanek lna...@gmail.com wrote: Can change defaults for

[android-developers] MediaPlayer ... a nest of undocumented pitfalls

2010-01-06 Thread DulcetTone
I use MediaPlayers in the most basic way possible, and yet it either works or not and there is no means to troubleshoot. I am trying to play a .wav file in my app's own filespace. It just won't do it. I try variation upon variation. I suspect that the MediaPlayer boasts only a limited set of WAV

[android-developers] Re: Nexus 2.1 one sale, WHERE is the SDK!

2010-01-06 Thread Sundog
I have ceased development on Android entirely. I am now just supporting my 2 apps - one of them a bestseller, the other an OpenGL flight game - as best I can. I'm sure the soundboard authors and the flashlight authors will keep up the stream of garbage, but I'll bet I'm not the only actual quality

[android-developers] Re: Start new activity in TAB

2010-01-06 Thread jotobjects
Are you calling this method to set the action for the tab? http://developer.android.com/intl/fr/reference/android/widget/TabHost.TabSpec.html#setContent%28android.content.Intent%29 On Jan 5, 3:11 pm, smyl smy...@gmail.com wrote: the activites are with in the same application , but the thing is

Re: [android-developers] android emulator speed

2010-01-06 Thread David Turner
Upgrade to Windows 7 ? More seriously, how much slower is it ? Are you sure you're talking about exactly the same hardware (including CPU and RAM) ? Did you try to disable your antivirus scanner, some of them really don't like the emulator's internal runtime code generation and do really hideous

Re: [android-developers] Re: What does targetSdkVersion do?

2010-01-06 Thread Dianne Hackborn
On Wed, Jan 6, 2010 at 3:10 PM, Matt Kanninen mathias...@gmail.com wrote: supports-screens android:smallScreens=false android:normalScreens=true android:largeScreens=true / If you don't specify anyDensity, then the system will run your app in density compatibility mode on high and low

Re: [android-developers] Will native libs built with the NDK work with the Nexus One?

2010-01-06 Thread David Turner
On Tue, Jan 5, 2010 at 6:39 PM, Francois Hamel francois.ha...@gmail.comwrote: Basically is the ARMv7 instruction set somehow an extension of the ARMv5 or is it completely different? Yes, it's an extension. All NDK-generated code that runs on Android ARMv5 devices should run on ARMv7 ones too.

Re: [android-developers] Re: Crashed Service not restarting - !!! FAILED BINDER TRANSACTION !!! - Dianne could you help ?

2010-01-06 Thread Dianne Hackborn
You probably want to fix the cause of your service crashing, so... what is the actual stack crawl of the exception? You don't show that anywhere. On Wed, Jan 6, 2010 at 2:03 PM, Derek cram.de...@gmail.com wrote: Hi again, Our service is still crashing for some reason not related to our

[android-developers] Re: Null pointer exception

2010-01-06 Thread Matt Kanninen
I do the management in onStop, for my cursor which supplies the data needed by a ListView (which means the cursor has to be open whenever the activity is displayed). @Override protected void onStop() { super.onStop(); if(db!=null){

Re: 回复: [android-developers] Re: how to clear activity stack in task

2010-01-06 Thread Matt Kanninen
Hard to do without changing code. I always end having to implement logout(), so all my activities extend a custom base activity, and in that base activity in onCreate I always end up checking for a global static: if(!isLoggedIn){ finish(); return; } On Jan 6, 4:43 am, Zhihong GUO

[android-developers] Re: How to GIF image for a finate time

2010-01-06 Thread Matt Kanninen
Yeah that's probably the right answer. In theory you can open a GIF as a video, it hasn't worked for me in practice. Actually it pisses me off that in the specs for Android phones they say they support the GIF filetype. They really should say they have partial support, until GIFs are animated

[android-developers] Re: How to run application in Back ground?

2010-01-06 Thread Matt Kanninen
So most applications are android Activites, long running processes outside of a given activity should be Android Services. The other major kind of Android thingy are content providers. On Jan 6, 3:33 am, Ganeshkumar ganesh.andr...@gmail.com wrote: Hello Friends, I want to develope an

[android-developers] Re: Android Books?...

2010-01-06 Thread Matt Kanninen
I do get the impression most game developers ignore most of the Android specific stuff. They still have to respect the Android lifestyle, and a game or two I otherwise like fails to properly save state... but you basically end up writing directly to the canvas and can follow the standards for

Re: [android-developers] Labeling points on a map

2010-01-06 Thread TreKing
Unfortunately, no, I don't think there's a built-in method of doing this (sure does make you wonder why they bothered with the title and snippet options, don't it?) However, this is asked alot. Search this group and the developer group for map balloon or map popup or something along those lines

[android-developers] Re: Null pointer exception

2010-01-06 Thread Martin
Hey, with eclipse, you can simply put a null-pointer-exception- breakpoint, then debug your program and eclipse will stop there, where the nullpointer creates this exception. Greetings, Martin -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] No route to host issue, but Browser application works fine

2010-01-06 Thread Wayne Wenthin
You are not alone. I have this every once in awhile, I know that they have already logged in due to where it generates the error. It's annoying to say the least. I'm now working on catching the exception and retrying since it is just trying to put a json object to my server On Wed, Jan 6,

Re: [android-developers] Re: How to run application in Back ground?

2010-01-06 Thread zongan liu
I think use android services two kinds of services 1 Application, once closed, services also shut down 2 Application, once closed, services also run 2010/1/7 Matt Kanninen mathias...@gmail.com So most applications are android Activites, long running processes outside of a given activity should

[android-developers] Re: No route to host issue, but Browser application works fine

2010-01-06 Thread Kenn Min Chong
I don't get it. I'm having this issue in the emulator. Is this an emulator only issue or it affects real devices too? This used to not do this, did a recent SDK update break this functionality? On Jan 6, 8:28 pm, Wayne Wenthin wa...@fuligin.com wrote: You are not alone.   I have this every once

[android-developers] MediaPlayer - Sound stops when I change the layout or suddenly randomly in my game

2010-01-06 Thread Martin
Hi! Why does my MediaPlayer MediaPlayer mp = MediaPlayer.create(this, R.raw.somemusic); mp.setLooping(true); mp.start(); stop, wenn I change the layout? setContentView(R.layout.screenoptions); and also suddenly in my game, the sound

[android-developers] Re: No route to host issue, but Browser application works fine

2010-01-06 Thread Kenn Min Chong
OKOK, I think I found out what the issue is, but can't explain why. I was trying to connect to a webservice located on the same machine as the emulator was running. I tried referring to the local machine by IP and by name, but I always get the no route to host error. But when I connect to the same

[android-developers] Re: Always permission denial when trying to read Email Account

2010-01-06 Thread sure zhang
Anybody can help? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Re: Always permission denial when trying to read Email Account

2010-01-06 Thread Dianne Hackborn
This is private to the e-mail app. Other apps do not get to access it. On Wed, Jan 6, 2010 at 6:36 PM, sure zhang sure19830...@gmail.com wrote: Anybody can help? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Using Nexus One as a development phone: Problem with USB driver under windows 7 64 bit

2010-01-06 Thread Streets Of Boston
Hi everyone, I've been using my G1 under Windows 7 64-bit and Eclipse just fine. However, when using my new Nexus One instead - and making sure that 'Use Debugging' is enabled - the Nexus One is not recognized and debugging on this phone is not possible. Usig the Nexus One as a removable-drive

Re: [android-developers] Using Nexus One as a development phone: Problem with USB driver under windows 7 64 bit

2010-01-06 Thread Xavier Ducrohet
Yesterday, we've pushed a new USB driver on the SDK updater repository (rev 3) to support the Nexus One, did you download it? Xav On Wed, Jan 6, 2010 at 7:51 PM, Streets Of Boston flyingdutc...@gmail.com wrote: Hi everyone, I've been using my G1 under Windows 7 64-bit and Eclipse just fine.

[android-developers] Re: scaling game images according display sizes

2010-01-06 Thread Jason Arora
Are you drawing in a separate thread (like the LunarLander example)? If not and your game is real-time, I seriously recommend switching to that model. Also, I don't believe you should be seeing a slow-down in compatibility mode... In my experience, it has worked pretty well. Are you testing this

[android-developers] Can you release the MediaPlayer wake lock when the battery is low?

2010-01-06 Thread skyhigh
I have received complaints from users of my application that audio playback will sometimes stop when the screen is blank. This seems to be a problem on some phones or Android OS versions, but not everyone sees this issue. On checking the documentation I found that the MediaPlayer by default does

[android-developers] Re: No route to host issue, but Browser application works fine

2010-01-06 Thread Kumar Bibek
For connecting to the localhost of your machine, you should not use 127.0.0.1 You can use the IP instead, or Please read up the docs. http://developer.android.com/guide/developing/tools/emulator.html#networkinglimitations Check for the section.Network Address Space Thanks and Regards, Kumar

[android-developers] Re: Labeling points on a map

2010-01-06 Thread Kumar Bibek
The title and snippet seem to be there for this purpose. I tried to find out about that, but nothing was mentioned in the docs. I guess, these haven't been implemented yet. Thanks and Regards, Kumar Bibek On Jan 7, 6:18 am, TreKing treking...@gmail.com wrote: Unfortunately, no, I don't think

[android-developers] Re: Launching another application through the current application

2010-01-06 Thread Kumar Bibek
You can do this, by triggering an implicit intent, provided the target application is designed to listen to such intents. Please read up the docs. http://developer.android.com/guide/topics/intents/intents-filters.html See Intent Resolution topic. Thanks and Regards, Kumar Bibek On Jan 6, 5:29 

[android-developers] Re: Android “hover” event i n custom layout

2010-01-06 Thread k_day
I still really need help with this. I just tried detecting in the imageView's on touch even if the finger is currently outside of the imageView, and if so, calling clear focus. However, it appears that once I clear focus from one view, dragging it over another will not give that view focus. Can

[android-developers] How to set Image to the ImageView dynamically

2010-01-06 Thread murali
hi friends , I am facing problem that whenever i am setting the image to a ImageView dynamically from a file path(not from the Res,drawable),by using SetImageURI(uri),i am getting one error like resolve uri failed on bad bitmap uri so how can i get the image from a file path by using this

[android-developers] Expose kernel logs to user environment

2010-01-06 Thread perumal316
Hi, I am currently writing a module for Android. In module programming there is only printk but is it possible to show the kernel messages to the users? Meaning the user who will be using the Android phone with the module will be shown the kernel messages. Thanks In Advance, Perumal -- You

[android-developers] Re: How to delete applications from the Android simulator.

2010-01-06 Thread Sasikumar S
http://www.androidpeople.com/uninstalldelete-an-appliaction-from-emulator-in-android/ see the above link... On Jan 6, 9:52 pm, John Gaby jg...@gabysoft.com wrote: I know that this is probably a stupid question, but I am completely new to Android development.  I have worked through a number

[android-developers] Re: How to use the Object android.widget.AdapterView.getItemAtPosition(int position)

2010-01-06 Thread theSmith
Manoj, I'm not sure if I understood you correctly, but I believe you are looking for getViewById(R.id.whatever); cast the result to a ListView, then call getItemAtPosition. also there is a group for android beginners. http://groups.google.com/group/android-beginners P.S. Please brush up on

[android-developers] How to make any service running automatically when the phone is turned on.

2010-01-06 Thread Manoj
Hi Please tell me the way to make any service running automatically when the phone is turned on. Manoj Chauhan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: ADP2 Ion upgrade to Android 2.0?

2010-01-06 Thread ninu
I am with you! I am trying to find out if there is any news about this as well. I have my Ion right now and want to install either 2.0 or 2.1 whichever I can get my hands on. -N On Dec 24 2009, 1:23 am, deuce4 lynx...@gmail.com wrote: Is there any official site that discusses any updates to

[android-developers] I want to make a Toast to prompt again and again on screen after every 5minutes.

2010-01-06 Thread Manoj
Hi, Please help me out on the issue as I want to make a Toast to promt again and again on screen by a service running in background. Please suggest me the way how to make this done. manoj chauhan -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: WebView Help

2010-01-06 Thread Mel Navarro
Oh. nvrmind. found the solution. :) On Dec 18 2009, 10:44 pm, Mel Navarro blaze9...@yahoo.com wrote: Hi, I was wondering if there is a way toselectorhighlightor focus at text from a webview's content. Or evenselectand copy text to the clipboard? (just like the default browser) Or even

[android-developers] Java Source/APIs to create a Fourm

2010-01-06 Thread soft buzz
Hi All, I would like to create a forum in my application, I would like to know available source code/APIs through which i can create it in less time/effort Thanks for your comments. -Buzz -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: How to use the Object android.widget.AdapterView.getItemAtPosition(int position)

2010-01-06 Thread Manoj
Sir I am doing the same thing what you are tell but i am not getting the way to use the returned object by getItemAtPosition() to get the checkbox which is a item in list. On Jan 7, 10:53 am, theSmith chris.smith...@gmail.com wrote: Manoj, I'm not sure if I understood you correctly, but I

[android-developers] Re: Nine patch pre-scaling on Hdpi

2010-01-06 Thread Pixie
Thanks for your responses. I know I can fix this by creating a high density image, but in the first place, the reason I didn’t do it is because my application is working on version 1.5, which, as you probably know, does not support density-specific resources. I have more than one way to solve this

<    1   2