The action bar for the 2 activities I have don't have a label. I want the main screen to have the app name and the next screen to have a different label. Here is my manifest file:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:theme="@style/MSTheme" >
<activity
android:name="com.android.recipme.MainScreen"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.android.recipme.MyRecipes"
android:label="@string/my_recipes" >
</activity>
</application>
I've searched for some answers and can't seem to get anything right. Please help thanks!