マニフェスト ファイルでアプリを変更できます。
<application
android:icon="@drawable/ic_launcher" //---- here--put your new icon in drawable folders and change it here
android:label="@string/app_name" // same thing.. change your app name in string.xml file.. then, here app name will change automatically....
android:theme="@style/AppTheme" >
<activity
android:name=".ui.MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
try this..
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>