Manifest file must be added to ArtistsActivity, AlbumsActivity, and SongsActivity.
http://developer.android.com/resources/tutorials/views/hello-tabwidget.html ----------------- Notice that this doesn't use a layout file. Just create a TextView, give it some text and set that as the content. Duplicate this for each of the three activities, and add the corresponding <activity/> tags to the Android Manifest file. ----------------- Thanks 2011/11/20 wyo <[email protected]>: > My manifest.xml looks like this as the tutorial specifies > > <application > android:icon="@drawable/ic_launcher" > android:label="@string/app_name" > > <activity > android:label="@string/app_name" > android:name=".HelloTabWidgetActivity" > android:theme="@android:style/Theme.NoTitleBar" > > > <intent-filter > > <action android:name="android.intent.action.MAIN" /> > <category > android:name="android.intent.category.LAUNCHER" /> > </intent-filter> > </activity> > > </application> > > > On Nov 20, 11:25 am, Robinns <[email protected]> wrote: >> Have you defined you activity under the Manifest.xml file. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" 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-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" 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-developers?hl=en

