[android-beginners] Re: source not found error!

2010-01-17 Thread csaunders
If you generated a project with Eclipse you should've had to create an
activity when you created the project.

Open up your AndroidManifest.xml file and look at it (either using the
ADT tool or simply the XML itself) and make sure you have something
similar to this:













The Android documentation explains the manifest file quite well I
suggest you check that out too.
http://developer.android.com/intl/fr/guide/topics/manifest/manifest-intro.html

Cheers,

On Jan 15, 6:27 am, umar  wrote:
> and which activity should i add??? please guide i am new to android.
> development..
>
> On Jan 15, 4:17 pm, Manoj  wrote:
>
> > You might have not added your activity in Manifest file, Add it there.
>
> > On Jan 15, 4:11 pm, umar  wrote:
>
> > > can any one provide me solution to this problem??
> > > i using windows vista with ADT on eclipse
>
> > > and getting this error
>
> > > SOURCE NOT FOUND
>
> > > EDIT SOURCE LOOKUP PATH
>
> > > activitythread.performlaunchactivity(activitythread
> > > $activityrecord,intent)
>
> > > how to resolve this??- Hide quoted text -
>
> > - Show quoted text -
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: source not found error!

2010-01-15 Thread Justin Anderson
Umar,

   1. Any activity that you want to use in your application needs to be in
   your manifest file...  You can find out more about the manifest file and
   what an activity declaration looks like here:
   http://developer.android.com/guide/topics/manifest/manifest-intro.html
   2. We can't tell you what activity to add because you have not posted ANY
   of your code...
   3. In my experience, the Source Not Found issue is more of a symptom of
   the problem rather than the problem itself... If you look at the logcat info
   you should be able to find out exactly what the problem is...  Most often,
   when I come across this problem, logcat reveals that it is a
   NullPointerException and tells me exactly where in my code that is
   happening.

Hope that helps,
Justin

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Fri, Jan 15, 2010 at 4:27 AM, umar  wrote:

> and which activity should i add??? please guide i am new to android.
> development..
>
> On Jan 15, 4:17 pm, Manoj  wrote:
> > You might have not added your activity in Manifest file, Add it there.
> >
> > On Jan 15, 4:11 pm, umar  wrote:
> >
> >
> >
> > > can any one provide me solution to this problem??
> > > i using windows vista with ADT on eclipse
> >
> > > and getting this error
> >
> > > SOURCE NOT FOUND
> >
> > > EDIT SOURCE LOOKUP PATH
> >
> > > activitythread.performlaunchactivity(activitythread
> > > $activityrecord,intent)
> >
> > > how to resolve this??- Hide quoted text -
> >
> > - Show quoted text -
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Beginners" group.
>
> NEW! Try asking and tagging your question on Stack Overflow at
> http://stackoverflow.com/questions/tagged/android
>
> To unsubscribe from this group, send email to
> android-beginners+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-beginners?hl=en
>
>
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: source not found error!

2010-01-15 Thread umar
and which activity should i add??? please guide i am new to android.
development..

On Jan 15, 4:17 pm, Manoj  wrote:
> You might have not added your activity in Manifest file, Add it there.
>
> On Jan 15, 4:11 pm, umar  wrote:
>
>
>
> > can any one provide me solution to this problem??
> > i using windows vista with ADT on eclipse
>
> > and getting this error
>
> > SOURCE NOT FOUND
>
> > EDIT SOURCE LOOKUP PATH
>
> > activitythread.performlaunchactivity(activitythread
> > $activityrecord,intent)
>
> > how to resolve this??- Hide quoted text -
>
> - Show quoted text -
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: source not found error!

2010-01-15 Thread umar
could you please guide how to add it??

On Jan 15, 4:17 pm, Manoj  wrote:
> You might have not added your activity in Manifest file, Add it there.
>
> On Jan 15, 4:11 pm, umar  wrote:
>
>
>
> > can any one provide me solution to this problem??
> > i using windows vista with ADT on eclipse
>
> > and getting this error
>
> > SOURCE NOT FOUND
>
> > EDIT SOURCE LOOKUP PATH
>
> > activitythread.performlaunchactivity(activitythread
> > $activityrecord,intent)
>
> > how to resolve this??- Hide quoted text -
>
> - Show quoted text -
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: source not found error!

2010-01-15 Thread Manoj
You might have not added your activity in Manifest file, Add it there.

On Jan 15, 4:11 pm, umar  wrote:
> can any one provide me solution to this problem??
> i using windows vista with ADT on eclipse
>
> and getting this error
>
> SOURCE NOT FOUND
>
> EDIT SOURCE LOOKUP PATH
>
> activitythread.performlaunchactivity(activitythread
> $activityrecord,intent)
>
> how to resolve this??
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en