如何在 Android 应用程序中创建 .exe?
我想知道如何在 Android 中创建 .exe 文件。如何在 Android 手机中运行 Android 手机所需的任何新软件?
是否可以将我的 Android 应用程序转换为诺基亚应用程序或适用于任何其他操作系统的应用程序?
预先感谢您的任何提示。
I want to know how I create .exe file in Android. How do I run in Android mobile any new software required in Android mobile?
Is it possible to convert my Android app into a Nokia app or app for any other OS?
Thanks in advance for any tips.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,我将回答我认为你所问的问题。
您无法在 Android 应用程序中创建 exe 文件(据我所知)。您需要 Windows 体系结构才能创建 exe 文件。我确信可能有一些黑客方法可以在 Linux 上执行此操作,但我不确定这在 Android 手机上是否兼容或可用。
如果您问如何为 Android 应用程序创建可执行文件(例如,我已经构建了一个 Android 应用程序,我该如何创建可执行文件?),那就不同了。 Android 应用程序不是 .exe 文件。它们的扩展名为 .apk。创建 Android apk 非常简单。在 Eclipse 中右键单击您的项目,选择“导出为”并选择 Android - 完成该过程(非常简单),它将为您生成一个 apk 文件。
您的第二个问题是您是否可以将您的 Android 应用程序转换为诺基亚应用程序或其他手机操作系统的应用程序。简短的回答是否定的。长的答案是,不同的移动操作系统为其应用程序使用完全不同的 SDK 和架构。目前还没有可靠的方法在操作系统之间移植应用程序。有一些框架允许您创建跨平台兼容的应用程序,您可以研究一下。 Appcelerator 的 Titanium 可能是其中最好的。
祝你好运
Ok, I'm going to answer what I think you're asking.
You cannot create an exe file FROM WITHIN an android app (as far as I'm aware). You would need a Windows architecture in order to create exe files. I'm sure there is probably some hacky way to do this from Linux, but I'm not sure if this would be compatible or useable, on an Android handset.
If you're asking how do you create an executable file for your Android app (e.g. I have build an Android app, how do I go about creating an executable file?) then thats different. Android apps aren't .exe files. They have the extension .apk. Creating an Android apk is very easy. Right click on your project in Eclipse and select "Export for" and choose Android - go through the process (which is very straightforwards) and it will produce an apk file for you.
Your second question is whether you can convert your android app into a nokia app or app for another phone OS. The short answer here is NO. The long answer is that the different mobile OSs use completely different SDKs and architectures for their apps. There is no reliable way (yet) to port apps between OSs. There are a few frameworks which allow you to create cross platform compatible apps which you can look into. Appcelerator's Titanium is probably the best of the lot.
Good luck
android中的可执行文件是 .apk 文件 。您只能在 Android 手机中安装 .apk 文件。您可以从Android market安装软件,如果您有一些apk文件,也可以直接安装。
通过链接了解更多信息: create-apk-files -for-android-phone & 在 android 上安装 apk-files
The executable files in android are .apk files . You can install only .apk files in android mobile. You can install softwares from Android market or directly if you have some apk files.
Go through the link to know more : create-apk-files-for-android-phone & install-apk-files-on-android