E
E
Eduard Talovikov2018-11-21 16:00:13
Android
Eduard Talovikov, 2018-11-21 16:00:13

How to change the default Apk icon of an app made with Android Studio?

5bf5562d8eb11705353276.jpeg
Show how to change the icon with an example.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Mikhail Chvarkov, 2018-11-21
@KuSu

Look for ic_launcher in the project resources. And also, as an option, right-click on the res folder -> New -> Image Asset -> Launcher Icons

M
mister_byt, 2018-11-29
@mister_byt

Add the desired image to the drawable folder and write the path android:icon="@drawable/image_name" in the Manifest file

<application android:label="@string/app_name"
        android:icon="@drawable/ic_launcher"
        android:theme="@android:style/Theme.Holo.Light">
        <activity android:name=".DeviceScanActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <activity android:name=".DeviceControlActivity"/>

        <service android:name=".BluetoothLeService" android:enabled="true"/>
    </application>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question