xml - How to edit an existing android app so the name and icon of the app is different -


can please me, need edit existing android app name , icon of app different. know how?

i've tried editing xml, im not of hacker, amaze me if this. please help.

if want change name , icon have go manifest.xml , application defined can change it's attributes like:

<application         android:icon="@drawable/yournewimage"         android:label="@string/yourappname">  

you have put image res/drawable folder , define app name @ res/values/strings.xml. name can put name hardcoded this:

<application      android:label="thename"> 

but it's better define on strings.xml

i hope helps! :)


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -