Android中是否有JAD类型的文件可以向APK传递参数?
在J2ME midlet开发中,您可以通过JAD文件将运行时参数传递给midlet。 Android 有类似的东西吗?我想要的是当用户下载 APK 活动时将基本自定义信息传递给它。
In J2ME midlet development, you can pass runtime parameters to the midlet through a JAD file. Is there anything like this with Android? What I want is to pass basic custom information to the APK Activity when a user downloads it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有这样的附带文件。您可以做的就是提供资源中所需的信息。有 String、整数, boolean 以及可供您使用的数组资源数据类型。此外,您可以将 Extras 添加到发送到您的应用程序或其他应用程序的意图。
No, there are no accompanying files like that. What you can do is provide the information needed in Resources. There are String, Integer, boolean, and array resource data types available to you. In addition you can add Extras to intents you send to your app or other apps.