Share My Creation Android Icon Generator for b4a

Using B4J to create for B4A. From here (17) Adaptive Icons - simple instructions and tips | B4X Programming Forum
(Spanish)

Android Icon Generator 1.0.png
 

Jhonn

Member
Download here: http://magussoft.000webhostapp.com/tool/SetupIconTool.exe free for all community

1. Select a folder proyect, if any icons exist show all
2. Click change or image to select a new image, automatic create all icons round foreground, and auto select color from image background.
3. Click Generate to save all files in your folder project (icon folder).
4. Add to main module: (more info here: Adaptative Icons)
B4X:
 #AdditionalRes: ../icon
Add to manifest editor:
B4X:
SetApplicationAttribute(android:icon, "@mipmap/ic_launcher")
    CreateResource(mipmap-anydpi-v26, ic_launcher.xml,
    <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@mipmap/background"/>
    <foreground android:drawable="@mipmap/foreground"/>
    </adaptive-icon>)
 
Top