[android-beginners] Re: Rooting?

2009-07-18 Thread stephen rigg
How big of a risk am I taking??? Is this reversable?? On Jul 17, 2009 1:42 AM, "Roman" wrote: Hi, Here is a pretty good description of how to root your G1 phone. http://androidandme.com/2009/05/guides/beginners-guide-for-rooting-your-android-g1-to-install-cupcake/ Of course ther

[android-beginners] Re: Timeout executing service - how to avoid this?

2009-07-18 Thread kaloer
Thank you very much. I put the xml parsing into an AsyncTask, and it works perfectly. //Kaloer On 18 Jul., 22:54, Mark Murphy wrote: > kaloer wrote: > > When I debug my application, it suddenly disconnects from the DalvikVM > > without throwing an exception. Regarding this, the emulator shows a

[android-beginners] Re: Timeout executing service - how to avoid this?

2009-07-18 Thread Mark Murphy
kaloer wrote: > When I debug my application, it suddenly disconnects from the DalvikVM > without throwing an exception. Regarding this, the emulator shows an > ANR dialog. It happens some time after I have started a service to do > an operation, by a Broadcast receiver. The operation does take pre

[android-beginners] Timeout executing service - how to avoid this?

2009-07-18 Thread kaloer
Hi, When I debug my application, it suddenly disconnects from the DalvikVM without throwing an exception. Regarding this, the emulator shows an ANR dialog. It happens some time after I have started a service to do an operation, by a Broadcast receiver. The operation does take pretty long time, be

[android-beginners] Re: How to set the activity as Main ?

2009-07-18 Thread Mark Murphy
Nerj wrote: > Any One... Put that intent filter on the activity that goes in your launcher. For the time being, remove all other intent filters from all other activities. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training

[android-beginners] Re: How to set the activity as Main ?

2009-07-18 Thread Nerj
Any One... On Jul 15, 3:07 pm, Nerj wrote: > Thank you for ur reply, > For your kindly information, I already mention that "action" tag for > "SpinnerTest". > > Pls, suggest me > > On Jul 13, 1:30 pm, golem wrote: > > > You should also move > android:name="android.intent.action.MAIN" /> >

[android-beginners] Question

2009-07-18 Thread Jose Ayerdis
I was reading the NotepadV2 app the following code... super.onListItemClick(l, v, position, id); Cursor c = mNotesCursor; c.moveToPosition(position); Intent i = new Intent(this, NoteEdit.class); i.putExtra(NotesDbAdapter.KEY_ROWID, id); i.putExtra(NotesDbAdapter.KEY_TITLE, c.getString( c.