android-icons
Material Design icon colors
I am too late to reply but nevertheless I will answer the question since it may save lot of time for some developers. I myself being a developer struggled a lot while creating icons in different colors and since I am not a designer it was really hard. After lot of searching I found this … Read more
Toolbar icon tinting on Android
Another option is to use the new support for vector drawables in the support library. See res/xml/ic_search.xml in blog post AppCompat — Age of the vectors Notice the reference to ?attr/colorControlNormal <vector xmlns:android=”…” android:width=”24dp” android:height=”24dp” android:viewportWidth=”24.0″ android:viewportHeight=”24.0″ android:tint=”?attr/colorControlNormal”> <path android:pathData=”…” android:fillColor=”@android:color/white”/> </vector>
How to change option menu icon in the action bar?
The following lines should be updated in app -> main -> res -> values -> Styles.xml <!– Application theme. –> <style name=”AppTheme” parent=”AppBaseTheme”> <!– All customizations that are NOT specific to a particular API-level can go here. –> <item name=”android:actionOverflowButtonStyle”>@style/MyActionButtonOverflow</item> </style> <!– Style to replace actionbar overflow icon. set item ‘android:actionOverflowButtonStyle’ in AppTheme –> <style … Read more
How to import set of icons into Android Studio project
Edit : After Android Studios 1.5 android support Vector Asset Studio. Follow this, which says: To start Vector Asset Studio: In Android Studio, open an Android app project. In the Project window, select the Android view. Right-click the res folder and select New > Vector Asset. Old Answer Go to Settings > Plugin > Browse … Read more
What’s the correct size icon for drawable-xxhdpi?
MDPI: 48×48 HDPI: 72×72 XHDPI: 96×96 XXHDPI: 144×144 XXXHDPI: 192×192 to create an icon for different densities, you should follow the 2:3:4:6:8 scaling ratio between the five primary densities (medium, high, x-high, xx-high, and xxx-high respectively) – developer.android.com
How to change the icon of an Android app in Eclipse?
Go into your AndroidManifest.xml file Click on the Application Tab Find the Text Box Labelled “Icon” Then click the “Browse” button at the end of the text box Click the Button Labelled: “Create New Icon…” Create your icon Click Finish Click “Yes to All” if you already have the icon set to something else. Enjoy … Read more
Adjust icon size of Floating action button (fab)
As your content is 24dp x 24dp you should use 24dp icon. And then set android:scaleType=”center” in your ImageButton to avoid auto resize.