Questions tagged [android-icons]

Android comes with detailed guidelines and default Icon packs for applications developers to ensure readability and clarity even at small sizes. This tag covers this android aspect.

Android comes with detailed guidelines and default Icon packs for applications developers to ensure readability and clarity even at small sizes. This tag covers this android aspect.

More info

298 questions
9
votes
1 answer

Is it possible to have animated launcher icons for android apps?

I am just curios if Android supports animated launcher icons like the iOS has the Calendar app which always shows the current day or the Clock which has a moving hand on the icon.
Tom Sawyer
  • 103
  • 1
  • 5
9
votes
1 answer

How to size custom marker icons for Android Google Maps v2?

I want to design custom icons for an Android app using Google Maps v2. I know there are a bunch of design resources which describe how one would create icons for various devices and densities. Here are some information sources: Android cheatsheet…
JJD
  • 50,076
  • 60
  • 203
  • 339
8
votes
6 answers

Image Asset NOT generating ic_launcher_foreground.xml file

I have created all my adaptive icons in the Image Asset tool but its not creating the ic_launcher_foreground.xml file - which in turn is causing my build to fail because the foreground.xml file is being referenced in the ic_launcher.xml and…
rolinger
  • 2,787
  • 1
  • 31
  • 53
8
votes
4 answers

How to change color of CompoundDrawable on Button?

I am trying to figure out how to change the color of icon which is in drawable left of button. Below is the XML code I am using :
8
votes
1 answer

Why there are different oppacities for active and inactive icons in material design?

I am really wondering why there are different oppacities for active and inactive icons in here: And here: So I am confused in these two cases: 1- An inactive dark icon on a light background should have opacity 26% or 38%? 2- An inactive light icon…
Misagh Emamverdi
  • 3,654
  • 5
  • 33
  • 57
7
votes
0 answers

android- remove black background from launcher icon api 26

I've a big problem with launcher icon in api 26 I've png with transparent background , But it gets black on transparent parts this is the result : it's not for the theme because other apps has no background this is my manifest :
Navid Abutorab
  • 1,667
  • 7
  • 31
  • 58
7
votes
1 answer

What is the recommended ActionBar icon size in Material Design (Android API 21+)?

First of all, this question is related: How big should Action Bar(Toolbar) icons be in the new Android Material design? In the related question it is clear that the touch target size of the action bar icons should be 48dp. I would like to get a…
mikeesouth
  • 1,610
  • 1
  • 19
  • 34
7
votes
1 answer

Gray circle next to large notification icon?

Im displaying notifications in my app - but for some reason on android version Lolipop its displaying a gray circle next to the large icon like this: Does anyone have an idea why is this happening? Here is my code in which I create my…
7
votes
2 answers

Action bar icon size in Android 4.2

Has the action bar icon size changed in Android 4.2 ? I've had a 120x48px HDPI icon that was rendered perfectly in Android 4.1 and below. It still is. However, on any 4.2 device, it is squelched to fit as 48x48px from what I can see. Or something…
Bogdan Zurac
  • 6,348
  • 11
  • 48
  • 96
6
votes
2 answers

How can I access all material icons in Android Studio through Icon in Jetpack Compose

Jetpack Compose has an Icon composable where I can access an imageVector. See example below. Icon( imageVector = Icons.Rounded.Email, contentDescription = "Email Icon", ) Why can I not access all icons listed in this Material Icons…
6
votes
4 answers

You need to check the icon inside your APK because it is not valid

While trying to upload my apk im getting this error..."You need to check the icon inside your APK because it is not valid." Manifest Code
Kamalnrf
  • 342
  • 4
  • 15
6
votes
1 answer

Android Notification Action Icon Sizes in Material Design

What should be the icon sizes in the notification action (button) for the material design? I am looking for the complete icon sizes (icon bounds/optical bounds). I came across a very similar question: What are the sizes of the icons in Android…
6
votes
3 answers

What package to download for material design icons?

If I go to https://design.google.com/icons/ and I select an icon to download, it gives me the option of downloading the 18dp, 24dp, 36dp, or 48dp version. I downloaded the 24dp package and it came with the hdpi, mdpi, xhdpi, xxhdpi, and xxxhdpi…
David Velasquez
  • 2,346
  • 1
  • 26
  • 46
6
votes
2 answers

How do some Android Apps get larger than recommended icons?

I followed what I believed to be the Android official icon sizes: ldpi: 36x36px mdpi: 48x48px hdpi: 72x72px xhdpi: 96x96px My icon looks the same size as some other icons (the facebook one for example). But others, such as Trip Advisor and Kayak…
PFranchise
  • 6,642
  • 11
  • 56
  • 73
6
votes
4 answers

Setting a custom share icon on Actionbar ShareActionProvider without ActionBarSherlock

I have the same problem as was described here - Setting a custom share icon on Actionbar ShareActionProvider But I'am not using ActionBarSherlockI found that the Sherlock theme uses the "actionModeShareDrawable" and I can also use it like this, if I…
1 2
3
19 20