Activity Declaration in AndroidManifest.xml

You have two activities in your package, but have only declared one in manifest.

Declare the other Activity class:

Add this to your manifest:

<activity
     android:name="com.example.stockquote.StockInfoActivity"
     android:label="@string/app_name" />

Leave a Comment