[android-developers] Re: After install ADT0.9,failed to launch APP as no VM compatible with android 1.5

2009-02-20 Thread david liu
You need create one vm firstly, then launch emulator with that vm. On Thu, Feb 19, 2009 at 10:26 PM, harry wrote: > > Same issue here. Cannot launch VM with ADT0.9.0 plugin, nor is > hardware device recognized. I had a look at > AndroidLaunchController.java and tried to patch the launch() functi

[android-developers] Re: *** Why 1 G1 can see Paid Apps in the Android Market and Another Not? ***

2009-02-20 Thread aclelland
Have you maybe set one up with an account which is linked to a google account outside the US/UK? If not a slow rollout is probably the best reason for them not showing up. Same thing happens with iGoogle and gMail updates. On Feb 20, 3:19 pm, Michael Martin wrote: > *** Can anyone at Google exp

[android-developers] Re: *** Why 1 G1 can see Paid Apps in the Android Market and Another Not? ***

2009-02-20 Thread Shane Isbell
I think I'm in the last batch. Just got paid updates a few minutes ago. On Fri, Feb 20, 2009 at 7:36 AM, Robert Green wrote: > > It's strange - I can't get my own app off the market but other people > are starting to now. H > > On Feb 20, 9:21 am, Al Sutton wrote: > > My guess would be

[android-developers]

2009-02-20 Thread John St. John
-- John St. John jstj...@cs.uoregon.edu (541) 543-7434 --~--~-~--~~~---~--~~ 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

[android-developers] Re: *** Why 1 G1 can see Paid Apps in the Android Market and Another Not? ***

2009-02-20 Thread Robert Green
It's strange - I can't get my own app off the market but other people are starting to now. H On Feb 20, 9:21 am, Al Sutton wrote: > My guess would be a phased rollout based on device IDs. > > That way the scalability can be tested and rolled back if neccessary. > > Or, alternatively, th

[android-developers] Re: *** Why 1 G1 can see Paid Apps in the Android Market and Another Not? ***

2009-02-20 Thread Al Sutton
My guess would be a phased rollout based on device IDs. That way the scalability can be tested and rolled back if neccessary. Or, alternatively, they might think you're greedy having 2 G1s and so will only give you the service on 1 :) :) :). Al. Michael Martin wrote: > *** Can anyone at Googl

[android-developers] Re: App Store Listings (Pictures?)

2009-02-20 Thread Mads Kristiansen
I don't think that's possible unfortunately. Only the app icon can be uploaded. / Mads 2009/2/20 themagazine > > Are we not able to upload pictures of the app? I couldn't find any > place to do this. > > If not, how is the user supposed to know anything about the app before > buying? > > > --

[android-developers] *** Why 1 G1 can see Paid Apps in the Android Market and Another Not? ***

2009-02-20 Thread Michael Martin
*** Can anyone at Google explain why some G1s can see paid apps while others can’t? I don’t believe this is a matter of an OTA updates but rather datacenter propagation thus it would depend on which Android Market datacenter the G1 is pinging. In my case I have 2 G1s (side by side) and 1 c

[android-developers] Re: How to compile G1 apps code

2009-02-20 Thread Sunil . Maharana
I just created a new Android Project and change the Camera code for import packages and commented the code those are not required for me, i could have able to remove all the syntex errors. For the first time i ran the project and it was giving some errors and i ignored those, when i try to ran

[android-developers] Re: How to get a region which is not a standard rect area

2009-02-20 Thread Mike Reed
Ah, that's a bug, null should be allowed. I'll see what can be done there for the future. The clip parameter is mean to be a hint to speedup turning the path into a region by restricting the result to a clipped subset of the path. For your purposes, you can just make a big rectangular region for

[android-developers] Re: Imported database unreadable on android

2009-02-20 Thread Mads Kristiansen
I can tell, that I did it the other way around - reading a phone-generated database on my desktop. How big is the database? Did you try to create an empty database (or a database with a minimum set of data) and read it on the phone? / Mads On Fri, Feb 20, 2009 at 2:55 PM, Billy Bob wrote: > > H

[android-developers] Re: WebView for "Form" based "Local AJAX" application

2009-02-20 Thread Fred Grott(shareme)
see CNET CiUI clientcide.com its already done just use it On Feb 18, 7:06 pm, Miguel Paraz wrote: > Hi, > I'm thinking of using WebView as a container for "Form" based > JavaScript+DHTML applications. This is simple fill-out-forms like you > have on the web, but now on mobile - like for note t

[android-developers] Re: IMPROPER RENDERING OF A HTML OBJECT

2009-02-20 Thread whitemice
Added as a bug report here: http://code.google.com/p/android/issues/detail?id=2044&can=1&q=html&colspec=ID%20Type%20Version%20Security%20Status%20Owner%20Summary&start=100 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

[android-developers] Re: develop application without a data plan?

2009-02-20 Thread Jordan Frank
My advice, is to do a search on Google for the phrase "activate android adp1 without a sim card". You will find lots of information on how to do this. The first three results all give step by step instructions. Note that this advice also applies to other questions that you might have. Cheers, Jo

[android-developers] Re: Singed App on Emulator

2009-02-20 Thread Stoyan Damov
On Fri, Feb 20, 2009 at 2:29 AM, jtoolsdev wrote: > > I have an app that is ready for release however after signing the app > when I attempt to upload it to the emulator I get an > "INSTALL_FAILED_UPDATE_INCOMPATIBLE."   I've searched and haven't > found anything on this message.  I also signed a

[android-developers] Question about spinner and quick text search.

2009-02-20 Thread EvgenyV
Hi! For ListActivity I can use method setTextFilterEnabled(true) which allows me to type letters and quick find list item(s). Does anybody know whether exists some similar out of the box functionality for Spinner dropdown list? Thanks, Evgeny --~--~-~--~~~---~--~

[android-developers] Imported database unreadable on android

2009-02-20 Thread Billy Bob
Hi, I'm creating a sqlite3 database on a linux box. This db is valid on the box, I can select and all... When I download the file on the phone (emulator in my case), and try to read it with an SQLiteDatabase, any request will raise an exception 'invalid file'. I've checked the file is not corru

[android-developers] Re: how to switch between two views

2009-02-20 Thread for android
Use the ViewFlipper. onCreate will be run once.After which the UI will be displayed. On Fri, Feb 20, 2009 at 6:19 PM, guptha wrote: > > > Can we use Handler to accomplish this task. > > > > > On Feb 19, 11:12 pm, "nEx.Software" wrote: > > I also think the Thread.sleep(500); is stopping the re

[android-developers] Re: Broken after update: FileNotFoundException on openFileOutput

2009-02-20 Thread Markus Junginger
This is getting even more confusing: * canRead and canWrite are true on the file * creating new files (new names) also fails The only way to get it to work again is to uninstall and install the app from scratch again. So, right know I am totally clueless, expect it could be an Android bug. I n

[android-developers] How Delete SMS from inbox programmatically OR discard it before received in inbox

2009-02-20 Thread Gulfam Hassan
Hi, I want to Delete SMS how i can delete it programmatically? I am receiving sms in my application in this format string. "12345 username password" ** i have post this thread on so many groups and forums but i dont receive any reply from last one week. its very urgent

[android-developers] Re: how to switch between two views

2009-02-20 Thread guptha
Can we use Handler to accomplish this task. On Feb 19, 11:12 pm, "nEx.Software" wrote: > I also think the Thread.sleep(500); is stopping the redraw from > happening. > > On Feb 19, 11:06 am, "nEx.Software" wrote: > > > I think onCreate runs all the way through before displaying the UI. > >

[android-developers] Re: IMPROPER RENDERING OF A HTML OBJECT

2009-02-20 Thread whitemice
I’ve just encountered the same problem. Below is a code snippet which defines a DIV element, light blue in colour and of limited height. This height/overflow setting caused a scrollbar to appear on all the desktop browsers tested. In the Android Browser, no scrollbar is shown and content after

[android-developers] ArrayAdapter of widgets (button and EditText)

2009-02-20 Thread zeeshan
Hi, i have wraped ArrayAdapter of a a single editText in a ListView (notepad example) ListView MsgListView = (ListView)findViewById(R.id.MsgListView); Button addimage = (Button) findViewById(R.id.addimage); final EditText EditMsgText = (EditText)findViewById(R.id.EditMsgText); final ArrayList t

[android-developers] Close all activities in tabbed application

2009-02-20 Thread Immy
Hi, Can someone tell me how to close all activities running under a tab? My initial activity does not need a tabbed view. Therefore, to initiate a tab for the next (remaining) activities, I call a class that extends TabActivity, from the first tab. All this class does is to assign and call acti

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread Al Sutton
Unfortunately it's not that easy. The V.A.T. rate is charged dependant on the end customer, and in the Market situation Google is counted as a reseller not the end customer. The last company I set up which sold software to the US without physical shipments (i.e. everything was a download) and

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread bouvetloz...@gmail.com
Supposedly Google won't detail your income by countries, thus you can't divide it including/excluding taxes, and of course you can't issue individual invoices for your customers regarding to the 70% of the net price. But strictly, you have only one business partner, Google from US, probably it's a

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread Sena Gbeckor-Kove
Well, and eloquently said. Thanks S On 20 Feb 2009, at 11:14, Al Sutton wrote: > > The problem is the last time I heard UK developers can't actually list > apps with prices US Dollars, and because you can only set one price > you'll have to explain to the tax man why your inclusive of VAT pric

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread Al Sutton
The problem is the last time I heard UK developers can't actually list apps with prices US Dollars, and because you can only set one price you'll have to explain to the tax man why your inclusive of VAT prices and exclusive of VAT prices are the same. There is also the issue that you have to s

[android-developers] Re: Broken after update: FileNotFoundException on openFileOutput

2009-02-20 Thread Markus Junginger
I just added some logging for debugging: File fileFile = context.getFileStreamPath(file); CommonLog.i("Opening file for output: " + fileFile.getAbsolutePath() + ", exists: " + fileFile.exists()); The output shows that the file exists: Opening file for output: /data/data/de.jars.android.quicksea

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread bouvetloz...@gmail.com
Thanks, I'm from EU but not UK. It seems to be totally complex. Maybe for an app sold for $1 you have to detail as follows: $1 + $1 * 70% * 17.5% for EU countries (except outside UK with VAT-ID), $1 for others (Google is responsible for taxing the remaining 30%). Probably it's not possible to set

[android-developers] Broken after update: FileNotFoundException on openFileOutput

2009-02-20 Thread Markus Junginger
In the Android Market, I saw that users of my app had serious problems: http://www.cyrket.com/package/de.jars.android.quicksearch After updating to a new version from the Market, the app became unusable. This line is causing the trouble: FileOutputStream fileOut = context.openFileOutput("searches

[android-developers] Re: Touch *extremely* expensive performance-wise

2009-02-20 Thread suhas gavas
hi zombies and robots, plz let me the solution to improve touch event performance I have got stuck because of the sam regards, suhas On Fri, Feb 20, 2009 at 12:46 PM, Zombies and Robots wrote: > > Thank you both! > > With those pointers, I was able to figure out and implement working > versions

[android-developers] Re: java.lang.VerifyError -- in Android

2009-02-20 Thread Maddy
Hi Fadden, Thanks for your information. The actual file names are a.java ---> Nullable.java b.java ---> AbstractServiceArbiter.java I have done "dexdump -d" my application (AndJOSCAR) and got AndJOSCAR.apk.dump file. I have opened that file using Ultraedit (Text Editor tool) to look for any u

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread Al Sutton
Section 3.2 of the Developer Distribution Agreement says; "Developer is responsible for determining if a Product is taxable and the applicable tax rate for the Payment Processor to collect for each taxing jurisdiction where Products are sold. Developer is responsible for remitting taxes to the

[android-developers] Re: When will Android support Multiple PDP?

2009-02-20 Thread David Hu
More specifically, as I know, Symbian 7.0s & higher support Multiple PDP, that's mean you can create multiple, for example, GPRS context & use it simultaniously(such as MMS & WAP & Inet context)... Does Android support this feature? If not, when will it support? Please help me. BR,

[android-developers] When will Android support Multiple PDP?

2009-02-20 Thread vistodavid
I want to know when will Android support Multiple PDP, it is urgent, please tell me if anyone knows, thanks in advance. BR, -David --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] Re: How can I get the child of a Widget

2009-02-20 Thread for android
you have declared the id as childWidget and u try to access it by childWidgete..hence the NPE On Fri, Feb 20, 2009 at 1:48 PM, Meryl Silverburgh < silverburgh.me...@gmail.com> wrote: > > Hi, > > In my layout.xml, I have a child Widget under my custom widget "MyWidget" > > My question is in my ja

[android-developers] Re: UK developers listing currency?

2009-02-20 Thread bouvetloz...@gmail.com
And what's about VAT? UK residents and European Union residents without VAT-ID should add the UK VAT? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

[android-developers] How can I get the child of a Widget

2009-02-20 Thread Meryl Silverburgh
Hi, In my layout.xml, I have a child Widget under my custom widget "MyWidget" My question is in my java code of my parent widget ("MyWidget"), how can I get a reference to the child Widget ("MyChildWidget")? I have tried this, but I get a nul

<    1   2