Android Crash When Starting Activity?
I have a new Intent Activity I want to open when a double click is registered, I know the double click is working properly, but every time I try to start the new activity it stops
Solution 1:
You may not have put the second activity in the manifiest file
<activityandroid:name="zoom"android:label="@string/app_name"/>
Solution 2:
Regardless you haven't shared the LogCat, I guess this is what you are looking for.
Intent myIntent = newIntent(YourClass.this, zoom.class);
Everytime you create new intent you send the caller of the new intent context, not the context of the view you are starting the Intent and add the activity to your manifest.
Post a Comment for "Android Crash When Starting Activity?"