My Android app is not displaying the application name \"app_name\", instead its displaying the activity name \"title\". This is from my manifest file;
<
In all activities you should change the value of
android:label
to
"@string/app_name"
UPDATED:
well the answer is that The First Activity with the label @string/title is your main activity which comes on the Launcher menu . So you have to set the label to that activity. Other Solution is that You create a Temp Activity and Call you Main Activity from there and set Your Main Activity the title Label and your Temp activity the App_name label and make your Temp Activity the Main Launcher.
Hope this Helps
Thanks