novice wrote:
> Well,
>
> I check the manifest.xml and there is only one "activity" tag located
> and it looks like it describes the launcher activity.
>
> The DDMS shows:
> [2009-01-06 18:24:59 - DeviceMonitor]Error reading jdwp list: null
>
> My guess is I need to include that second activity?
Yes. Activities are not launchable otherwise.
> If I do how can I add it correctly? There are sub tags about intent
> filters and such.
You won't need an intent filter. Just a standard <activity> element with
android:name and android:label attributes should do:
<activity
android:name=".YourClassNameGoesHere"
android:label="Text Or String Resource Reference Goes Here"
>
</activity>
--
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 1.9 Published!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---