How to display count of notifications in app launcher icon [duplicate]

Android (“vanilla” android without custom launchers and touch interfaces) does not allow changing of the application icon, because it is sealed in the .apk tightly once the program is compiled. There is no way to change it to a ‘drawable’ programmatically using standard APIs. You may achieve your goal by using a widget instead of … Read more

How to use the new Material Design Icon themes: Outlined, Rounded, Two-Tone and Sharp?

Update (31/03/2019) : All icon themes work via Google Web Fonts now. As pointed out by Edric, it’s just a matter of adding the google web fonts link in your document’s head now, like so: <link href=”https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp” rel=”stylesheet”> And then adding the correct class to output the icon of a particular theme. <i class=”material-icons”>donut_small</i> <i … Read more

What do the icons in Eclipse mean?

This is a fairly comprehensive list from the Eclipse documentation. If anyone knows of another list — maybe with more details, or just the most common icons — feel free to add it. Latest: JDT Icons 2019-06: JDT Icons 2019-03: JDT Icons 2018-12: JDT Icons 2018-09: JDT Icons Photon: JDT Icons Oxygen: JDT Icons Neon: … Read more