On 4 Maj, 12:32, Mark Murphy <mmur...@commonsware.com> wrote:
> rico_1 wrote:
> > When I add tabs, the app is stopped...
>
> And the error is...what? You can get the error message and Java stack
> trace from adb logcat or DDMS.
>
Sorry, my fault... :)
error was:
Unable to find explicit activity class {com.android.tabs/
com.android.tabs.List1}; have you declared this activity in your
AndroidManifest.xml?
I added to AndroidManifest.xml and works.:
<activity android:name=".List1"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Thank You for help and Your time.
--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---