Android-8.0系统中应用图标的适配
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android-8.0系统中应用图标的适配相关的知识,希望对你有一定的参考价值。
参考技术A 从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下面吧。图标啥的放到mipmap下面吧....做就是了。是吧.....
然后我们看看怎么样用AS做图标,生成各种方向,圆形,圆角,不同大小的图标:
直接看图说话:
1.选择美工提供的图标
1.1 个人建议大小128及以上,太小了,清晰度不好
1.2 提供正方形不带圆角的图标,背景为白色,厂商logo居中显示,上下左右留出间距
比如:由于用到了别人的log,所以帮别人打个广告哈....猎云财经
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">方形logo</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">选择对应提供的图标</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">选择后默认图标位置大小不太正确</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">选择Resize,调整尺寸,把icon标识居中</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">调整后的图标进行居中,间距多留点</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">此时背景色还没设置,所以有蓝色的背景,此时你只需要把背景色调整为和图标的背景色相同即可</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">最后效果还可以哟,其他情况根据实际icon要求来即可</figcaption>
<figcaption style="margin-top: 0.66667em; padding: 0px 1em; font-size: 0.9em; line-height: 1.5; text-align: center; color: rgb(153, 153, 153);">最后点击完成,自动回生成相关图标自动放到mipmap不同比例下</figcaption>
至此,我们就可以做自己的图标了。。。有些东西可以了解下,然后就开整就行。。如果不适配,你会发现再某些机器上以前的图标会有点点问题哟! 快快更新吧....
上架Google Play应用如何适配Android 11?
在Android 10 中,Google首次引入了分区存储。分区存储是需要以 Android 10 为目标平台,系统默认强制执行。
如果在 AndroidManifest 中添加了 requestLegacyExternalStorage=true 标志,就可以不受此限制。但是当 target API 更新为 30 (Android 11)后,系统会忽略该配置。
平台适配
- 引擎存储协议适配:引擎提供的存储协议fs:// , cache://,引擎会进行适配。
- 模块适配:官方模块已完成适配。开发者模块会陆续完成适配。因大部分模块是基于引擎协议fs:// 开发,因此需要适配的模块很少。
应用适配
- 如果是文件管理,文档管理类应用,需要添加manageStorage模块,申请 “所有文件访问权限”。需要在谷歌play 控制台描述该权限的用途。
- 如果不是文件管理类应用,不需特殊处理,编译后进行测试,所有功能正常,即可提交应用商店。如果发现有相关功能异常,如文件保存不了,可在论坛反馈,官方会及时处理。
谷歌商店声明,自2021年8月起,新应用必须以API级别30 (Android 11)为目标平台。自2021年11月起,所有应用更新必须以API级别30 (Android 11)为目标平台。
如何设置API级别为30
1、下载附件中的manifest.xml,将其中的targetSdkVersion更新为目标值,例如30;
2、将manifest.xml置于你的/项目代码/res/目录下(widget/res/manifest.xml);
3、将你的APP代码中所有涉及到需要动态权限的操作,参照原帖附件中的代码,改造一遍。附件下载请查看原帖
以上是关于Android-8.0系统中应用图标的适配的主要内容,如果未能解决你的问题,请参考以下文章
Android 8.0 应用快捷方式(ShortcutManager)的使用
Android 项目中软件图标适配和mipmap文件夹的规则