I am new to android programming.I have started building an app using eclipse.In the layout file the app icon and App name comes there by default. How do I change it.
A relative layout is there by default.
Whatever I add say–image view textview get added below the main title bar.
How do I change this?
I am new to android programming.I have started building an app using eclipse.In the
Share
Links to app name and icon are placed in the
AndroidManifest.xmlinside theapplicationtag. String resources, like@string/app_name, are placed inside thestrings.xmlfile in theres/valuesdirectory. Drawable resources, like@drawable/ic_launcher, are inside theres/drawableset of directories. Good luck!