[android-developers] Issue with startActivity

2010-12-19 Thread apachetechnology
I am trying to start a activity from ListActivity but its crashing. package net.apachetechnology.Organizer; import android.R; import android.app.ListActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import

Re: [android-developers] Issue with startActivity

2010-12-19 Thread Kostya Vasilyev
Did you add the new activity (test) to the manifest? What's in logcat? BTW, you don't need to do your own try/catch blocks with error logging just to see what's going on. Just use logcat. -- Kostya 19.12.2010 19:59, apachetechnology пишет: I am trying to start a activity from ListActivity

Re: [android-developers] Issue with startActivity

2010-12-19 Thread YuviDroid
You need to add the test activity into your manifest. Anyway, use logcat to see the error that is being thrown, as Kostya suggested. On Sun, Dec 19, 2010 at 5:59 PM, apachetechnology ad...@apachetechnology.net wrote: I am trying to start a activity from ListActivity but its crashing.