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
Post a Comment