[android-developers] Re: Problem Starting new ActivityForResult

2008-10-22 Thread fahadlala
Thanks alot i got it :D --~--~-~--~~~---~--~~ 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: Problem Starting new ActivityForResult

2008-10-21 Thread Peli
You can find the database only in the internal memory. >From a shell window type: adb shell cd /data/data/com.yoursite.yourapplication/databases sqlite3 mydatabase.db .dump Peli On Oct 21, 1:01 pm, fahadlala <[EMAIL PROTECTED]> wrote: > This problem has been resolved by recreating the Activitie

[android-developers] Re: Problem Starting new ActivityForResult

2008-10-21 Thread fahadlala
This problem has been resolved by recreating the Activities and Intent Filters in the AndroidManifest.xml. @ StevePotell : I am having trouble finding the database created by my application so that i may access it through SQLite Maestro. I have searched into the SDK directory(+subdirs) and also

[android-developers] Re: Problem Starting new ActivityForResult

2008-10-21 Thread fahadlala
This is the exact Exception that is thrown by InvocationTargetException class: * Unable to instantiate activity ComponentInfo{com.lbs/ com.lbs.CustomerEdit}: java.lang.NullPointerException --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[android-developers] Re: Problem Starting new ActivityForResult

2008-10-20 Thread fahadlala
1. I have added the CustomerAddEdit(Now renamed to CustomerEdit) to the AndroidManifest.xml; Below is the code: 2. The createCustomer() is a method inside

[android-developers] Re: Problem Starting new ActivityForResult

2008-10-20 Thread StevePotell
Two quick possible errors here: 1. was CustomerAddEdit added to the manifest as an activity? 2. if createCustomer() is called inside a button click "new Intent(this, .." might be referencing the button listener. Try "new Intent(MyForm.this, .." instead. On Oct 19, 11:26 pm, fahadlala <[EMA