Re: [android-developers] Block the upgrade

2011-09-21 Thread Chris
On Wednesday, September 21, 2011 1:07:33 PM UTC-4, TreKing wrote: On Wed, Sep 21, 2011 at 7:47 AM, Perry168 perr...@netvigator.com wrote: How can I block the user to upgrade the Apps if who isn't downloaded from google market? Your question makes no sense. I'll do my best to

Re: [android-developers] Block the upgrade

2011-09-21 Thread Michael Banzon
On Wed, Sep 21, 2011 at 9:34 PM, Chris crehb...@gmail.com wrote: On Wednesday, September 21, 2011 1:07:33 PM UTC-4, TreKing wrote: On Wed, Sep 21, 2011 at 7:47 AM, Perry168 perr...@netvigator.com wrote: How can I block the user to upgrade the Apps if who isn't downloaded from google

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread niko20
Ok I don't normally swear but J CH you nitwit. It's a mobile OS, it can't be everything to everybody. If you tried to do that it would not fit on a phone. -niko On Sep 21, 11:09 am, Jim Graham spooky1...@gmail.com wrote: On Wed, Sep 21, 2011 at 08:49:31AM -0700, Lew Bloch wrote:

Re: [android-developers] Curved Gallery view

2011-09-21 Thread Speedy Lope
Hi, have you tried the latest invention called google.com ? ;) http://stackoverflow.com/questions/3732739/possibility-of-a-curved-gallery Of course you need to extend existing Gallery (if you want it to behave like a gallery). On Wed, Sep 21, 2011 at 5:34 PM, Abhi abhishek.r.sha...@gmail.com

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Peter Sinnott
Doesn't work for me. I guess it is another US only feature. On Sep 21, 2:47 am, Dianne Hackborn hack...@android.com wrote: Also, Android kills babies. On Tue, Sep 20, 2011 at 12:02 PM, wanyce ashoura wanyce...@gmail.comwrote: Yes i should say that Why because of more then one reason

Re: [android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Jim Graham
On Wed, Sep 21, 2011 at 12:43:20PM -0700, niko20 wrote: Ok I don't normally swear but J CH you nitwit. It's a mobile OS, it can't be everything to everybody. If you tried to do that it would not fit on a phone. Just to be clear on this: your response is directed at the original poster

[android-developers] Activity Help

2011-09-21 Thread Derek Winstead
Hello all, I have an issue where my activity has a spinner up top to change the listview below it with data from the sqlite database. Using this activity everything works fine. However, when I click on one of the list items it runs the next activity intent and after this new activity finishes

[android-developers] Re: Activity Help

2011-09-21 Thread Derek Winstead
It starts in the LiteratureManager.java and the intent goes to LiteratureEditor.java -- 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,

[android-developers] Re: Block the upgrade

2011-09-21 Thread Streets Of Boston
No. If you would use different package names, even if you would use two differently signed certificates, both of which would in some form or fashion prohibit a direct upgrade, the user can still uninstall one and then install again from the Android Market. -- You received this message

[android-developers] C2DM - phone send data back to Google Cloud (in addition to normal Cloud to Phone)?

2011-09-21 Thread NickL
The C2DM supports both directions? ie, does Google expect the notified app to contact the initiating server directly? or is there an api to let the phone send data to the target server via the Google C2DM server? if so, it would save some of the authorization/ authentication load from my server

Re: [android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 2:45 PM, Peter Sinnott psinn...@gmail.com wrote: On Sep 21, 2:47 am, Dianne Hackborn hack...@android.com wrote: Also, Android kills babies. Doesn't work for me. I guess it is another US only feature. You just have to throw harder.

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Peter Sinnott
On Sep 21, 10:41 pm, TreKing treking...@gmail.com wrote: On Wed, Sep 21, 2011 at 2:45 PM, Peter Sinnott psinn...@gmail.com wrote: On Sep 21, 2:47 am, Dianne Hackborn hack...@android.com wrote: Also, Android kills babies. Doesn't work for me. I guess it is another US only feature. You

[android-developers] cannot input text into EditText widgets inside ListView

2011-09-21 Thread John Goche
Hello, I am having a dynamic list with text views. My list_item.xml file looks like this. When I try to enter text on the 2.3.3 emulator it goes in for a short while and then the soft keyboard shifts my UI up and it gets cleared. Anyone know why this is happening? Thanks, John Goche ?xml

[android-developers] android.git.kernel.org is down

2011-09-21 Thread Richard Schilling
Apologies if this is a duplicate. But, http://android.git.kernel.org is not responding. Page not found. Anyone else see this? Thanks. Richard -- 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] Re: android.git.kernel.org is down

2011-09-21 Thread Richard Schilling
Correction - SERVER not found. -- 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] Re: Android is worst os mobile is this true

2011-09-21 Thread Richard Schilling
Sorry you feel this way. There are lots of Android developers on this list, so I'm sure someone heard you. In fact, you can be one! You're welcome to download the code and make changes that you feel should be there. Richard -- You received this message because you are subscribed to the

Re: [android-developers] parcelable again: passing object BACK through activity stack

2011-09-21 Thread Richard Schilling
This is some good sound advice. If you don't want to use startActivityForResult and onActivityResult then you can store your data in some source of truth like the SQLite database, or even shared preferences if you just have a few data items. Richard -- You received this message because

[android-developers] Re: Activity Help

2011-09-21 Thread Richard Schilling
The spinner and the list on the first activity are self contained - that is their state won't directly affect the activity that you're calling. Sounds like the activity you start is trying to access some data/resource that is not there (e.g. your layout is missing a resource). Check the

[android-developers] Re: C2DM - phone send data back to Google Cloud (in addition to normal Cloud to Phone)?

2011-09-21 Thread Streets Of Boston
Nope. The phone gets notified from C2DM if something happens.That's it. Then it's the task of your app to communicate (two-way if necessary) with your app's server. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: android.git.kernel.org is down

2011-09-21 Thread Richard Schilling
Dough! It's down for maintenance. -- 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

Re: [android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Rogério de Souza Moraes
I agree that the Android for me is the best choice for a phone OS and you can download the code from 1.x until 2.x, but I think we will never the 3.x codes. With some lucky they will release the 4.x codes without much delay. 2011/9/21 Richard Schilling coderroa...@gmail.com Sorry you feel this

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Indicator Veritatis
Which is considered OK only when done with smart bombs and/or B-52s:( But at least Google can justly claim that Android kills babies only if you do not use as directed;) On Sep 20, 6:47 pm, Dianne Hackborn hack...@android.com wrote: Also, Android kills babies. On Tue, Sep 20, 2011 at 12:02

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Indicator Veritatis
Does that mean that the unclean offspring of an unholy union between RIM and WebOS might be better? On Sep 21, 8:49 am, Lew Bloch lewisbl...@google.com wrote: Android is the worst form of mobile OS except for all those other forms that have been tried from time to time ... -- Apologies to

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread Indicator Veritatis
I never understood the logic behind that decision: why isn't the 3.x code being open sourced just like the others? It leaves one doubting Google's word, when they say, We wanted to make sure that there was no central point of failure... why we created Android, and made its source code open. For

[android-developers] Re: Android is worst os mobile is this true

2011-09-21 Thread martypantsROK
what's wrong with your android phone? My can and does have Arabic. Mine can redial. Mine can do voice mail - although that's more a function of the carrier and not the phone. go wank on another message list. Oh and learn English On Sep 21, 4:02 am, wanyce ashoura wanyce...@gmail.com wrote: Yes

[android-developers] Re: android.git.kernel.org is down

2011-09-21 Thread Chris
How is it under that rock you live under? It's been down for weeks and has been covered ad-nauseam. -- 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

Re: [android-developers] cannot input text into EditText widgets inside ListView

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 5:43 PM, John Goche johngoch...@googlemail.comwrote: When I try to enter text on the 2.3.3 emulator it goes in for a short while and then the soft keyboard shifts my UI up and it gets cleared. Anyone know why this is happening? You may want to elaborate - I for one

[android-developers] Re: Block the upgrade

2011-09-21 Thread Spiral123
I suspect the OP is concerned that someone may obtain a pirated copy of his app and then subsequently upgrade it from the Android market without ever paying for it. On Sep 21, 3:42 pm, Michael Banzon mich...@banzon.dk wrote: On Wed, Sep 21, 2011 at 9:34 PM, Chris crehb...@gmail.com wrote: On

Re: [android-developers] Re: Block the upgrade

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 7:38 PM, Spiral123 cumis...@gmail.com wrote: I suspect the OP is concerned that someone may obtain a pirated copy of his app and then subsequently upgrade it from the Android market without ever paying for it. In that case, the Market does not allow downloading an

[android-developers] Re: Activity Help

2011-09-21 Thread Derek Winstead
Thanks Richard, I have directly skipped the LiteratureManager.java and run the intent LiteratureEditor.java from an activity before that normally calls the manager file. The editor works just fine and doesn't crash. I will post a stack trace tomorrow when I'm at work and can run the

[android-developers] Re: Google Wallet on rooted devices

2011-09-21 Thread mtk
Well.. Google as a payment service provider should be worried as there are payment industry standards (PCI DSS compliance is law in some states) that governs secure handling/storage of payment credentials/ credit card info. On Sep 20, 10:10 pm, Zsolt Vasvari zvasv...@gmail.com wrote: Why should

[android-developers] Unlock Dell Mini 5

2011-09-21 Thread Tsolmon Narantsogt
Hello comrades. I've Dell Mini 5 http://www.gsmarena.com/dell_streak-3353.php. But it's locked. How to unlocking this phone . Can anyone help me ? - Thanks Tsolmon -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] VerifyError

2011-09-21 Thread bob
Can someone help me understand this error? java.lang.VerifyError: com.coolfone.sonicboom.MyRenderer at com.coolfone.sonicboom.hmm.onCreate(hmm.java:52) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java: 1123) at

Re: [android-developers] VerifyError

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 9:11 PM, bob b...@coolgroups.com wrote: Can someone help me understand this error? What do you need to know, besides what you can find in two seconds from a Google search? -

[android-developers] Re: Google Development phones

2011-09-21 Thread kypriakos
Good point - and I think the Nexus S is a bit overpriced. I had G1 phones for a while (both the development and the retail versions) running 1.6 but I have not been able to upgrade the retail ones to 2.1 or 2.2. I am assuming the only images I can find are the Cyanmodegen ones? A Verizon

Re: [android-developers] Re: Block the upgrade

2011-09-21 Thread Dianne Hackborn
Also if you are using the license check or anything that requires the app be modified to be pirated, the pirate will need to sign it with their own cert which will not match that of the real app so not be compatible as an update. On Wed, Sep 21, 2011 at 5:40 PM, TreKing treking...@gmail.com

[android-developers] Re: C2DM - phone send data back to Google Cloud (in addition to normal Cloud to Phone)?

2011-09-21 Thread Sourav Howlader
Hi NickL, What Streets said is correct. Check this C2DM documentation http://code.google.com/android/c2dm/ Regards, Sourav -- 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] regarding call handling and screen off

2011-09-21 Thread nageswara rao rajana
Hi, I developed an application and android 2.1 api level, its working fine.But my request is when running application how to handle calls and also screen should not off. So please help me. Thanking you, nagu. -- You received this message because you are subscribed to

[android-developers] Unable to instantiate application

2011-09-21 Thread Andrew
I got an exception from Android Market recently for many times. I tested my application on several devices, and cannot reproduce this exception. I have no idea about that. Need help!

Re: [android-developers] regarding call handling and screen off

2011-09-21 Thread Pratik Prajapati
use wakelock On Wed, Sep 21, 2011 at 10:17 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: Hi, I developed an application and android 2.1 api level, its working fine.But my request is when running application how to handle calls and also screen should not off. So please

[android-developers] Re: Google Development phones

2011-09-21 Thread B.Arunkumar
Hi, I am interested in this discussion. I would like to know whether there is any Unlocked Android mobile with 1GHz Processor and GPU with Android Froyo/Gingerbread OS priced around $150-200? Actually, we have have developed an application to use FFMPEG and render video frames. Currently,

Re: [android-developers] regarding call handling and screen off

2011-09-21 Thread nageswara rao rajana
Please can you provide me sample code or related links for wakelock. On Thu, Sep 22, 2011 at 11:03 AM, Pratik Prajapati pratik.prajap...@gmail.com wrote: use wakelock On Wed, Sep 21, 2011 at 10:17 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: Hi, I developed an

[android-developers] Getting null value while retrieving _id value from database

2011-09-21 Thread Krishna Prasad
Hi all, Iam getting null value from colum_id while im trying to save it in a variable.But the thing is,im getting other column's value correctly. here is the sample database code public Cursor getWebFields(String FormId) { SQLiteDatabase db = this.getReadableDatabase();

[android-developers] regarding camera issue

2011-09-21 Thread nageswara rao rajana
Hi, I developed an application in android 2.1 api, in which i implemented camera service it is working fine in samsung pop, but camera activity is not working in HTC. Please any one tell what might be the issue. Thanking you, nagu. -- You received this message because

<    1   2