Android-8.0系统中应用图标的适配

从Eclipse或者还是习惯以前把ic_luncher.png放到drawable下面, 还是让美工,你调整不同比例的图标吧,不太适配.....到现在应该可以暂时摒弃一下这些做法了。AS为我们提供了更方便的制作icon的方式,妈妈再也不用担心图标适配了了.....

这里我就是以相对简单的制作方式来说明下。至于图标适配的文章网上肯定很多,有些可能比较复杂,需要利用美术提供的前景背景来搞。不过大部分我觉得还是比较简单的。。

另外提到drawable和mipmap的问题,这里有官方解释:

Mipmapping for drawables

Using a mipmap as the source for your bitmap or drawable is a simple way to provide a quality image and various image scales, which can be particularly useful if you expect your image to be scaled during an animation.

Android 4.2 (API level 17) added support for mipmaps in the Bitmap class—Android swaps the mip images in your Bitmap when you’ve supplied a mipmap source and have enabled setHasMipMap(). Now in Android 4.3, you can enable mipmaps for a BitmapDrawable object as well, by providing a mipmap asset and setting the android:mipMap attribute in a bitmap resource file or by calling hasMipMap().

mipmap在OpenGL里面很基本的概念,可以理解为多级纹理映射。自动选择比当前分辨率大而又最接近当前分辨率的图片来做缩放处理,这样就实现了 google 官方文档中描述的更好视觉效果,更高效率的目的。

Google官方有介绍:Managing Projects Overview http://developer.android.com/tools/projects/index.html#mipmap

drawable/
For bitmap files (PNG, JPEG, or GIF), 9-Patch image files, and XML files that describe Drawable shapes or Drawable objects that contain multiple states (normal, pressed, or focused). See the Drawable resource type.

===========================================================================================

mipmap/
For app launcher icons. The Android system retains the resources in this folder (and density-specific folders such as mipmap-xxxhdpi) regardless of the screen resolution of the device where your app is installed. This behavior allows launcher apps to pick the best resolution icon for your app to display on the home screen. For more information about using the mipmap folders, see Managing Launcher Icons as mipmap Resources

所以图片资源什么的就放到drawable下面吧。图标啥的放到mipmap下面吧....做就是了。是吧.....

然后我们看看怎么样用AS做图标,生成各种方向,圆形,圆角,不同大小的图标:

直接看图说话:

1.选择美工提供的图标

1.1 个人建议大小128及以上,太小了,清晰度不好

1.2 提供正方形不带圆角的图标,背景为白色,厂商logo居中显示,上下左右留出间距

比如:由于用到了别人的log,所以帮别人打个广告哈....猎云财经

image

方形logo

image

选择对应提供的图标

image

选择后默认图标位置大小不太正确

image

选择Resize,调整尺寸,把icon标识居中

image

调整后的图标进行居中,间距多留点

image

此时背景色还没设置,所以有蓝色的背景,此时你只需要把背景色调整为和图标的背景色相同即可

image

最后效果还可以哟,其他情况根据实际icon要求来即可

image

最后点击完成,自动回生成相关图标自动放到mipmap不同比例下

至此,我们就可以做自己的图标了。。。有些东西可以了解下,然后就开整就行。。如果不适配,你会发现再某些机器上以前的图标会有点点问题哟! 快快更新吧....

你可能感兴趣的:(Android-8.0系统中应用图标的适配)