“现代的”清单文件的外观
“传统”Manifest 文件最终由 application/activities
标签、uses-sdk
标签和 uses-permission
组成。
您建议在“现代”清单文件中包含哪些新标签?我指的是处理屏幕和分辨率以及可能其他内容的标签。
A "traditional" Manifest files consisted of application/activities
tags, uses-sdk
tag and uses-persmission
eventually.
What are the new tags that you advise to include in the "modern" Manifest file? I am referring to the tags that deals with screens and resolutions, and possibly something else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们 Android 开发人员通常应将一些属性包含在
AndroidManifest.xml
中。 android这些常见的标签/属性是:
尽管如此,我知道还有许多其他新的标签/属性。它们是:
请参阅 AndroidManifest.xml 文件 了解更多相关信息:
Some of attributes which we Android developers should normally include in the
AndroidManifest.xml
. Here it is:Those common tags/attributes are:
Still, I know there are many other new tags/attributes. Those are:
Refer to The AndroidManifest.xml File for more information about the same:
您可以查看条形码扫描仪中的内容 ,如果这是一个有用的数据点。我认为清单与您所描述的没有什么不同。
现在很常见。<兼容屏幕>
、
和
也会弹出。完整的文档在这里。You can look at the one from Barcode Scanner, if that's a helpful data point. I don't think manifests are that different from what you describe.
<supports-screens>
is common now.<compatible-screens>
,<uses-configuration>
, and<receiver>
pop up too. The complete docs are here.