[android-developers] Re: Newbie having trouble launching new activity, application stops unexpectedly

2010-12-13 Thread Noah Amolo
Do you have an activity called video_4? In your manifest youve set video_4 as the launch activity..confirm if this is the issue, if so, you need to set Videos as the launch activity when the app launches.i.e Replace: activity android:name=.video_4 android:label=@string/app_name

[android-developers] Re: Newbie having trouble launching new activity, application stops unexpectedly

2010-12-13 Thread Noah Amolo
Check your launch activity, I think it should be .Videos and not .videos_4 as you have put in your AndroidManifest file. -- 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

[android-developers] Re: Newbie having trouble launching new activity, application stops unexpectedly

2010-12-12 Thread vtb
Thanks, the capital A in the XML file fixed my issues, the hard coding of the path was a temporary measure to allow me to quickly test on my device. I have now recoded the bad parts and everything is working fine. It's a shame that no error was reported in the compile. Thank you very much for