将 Java 代码转换为 Android
我有一个 Java 应用程序,我需要将其转换为 Android 应用程序 有没有资源可以展示如何?在 Android 开发者网站上我没有找到类似的东西!
我需要在android中使用Java方法和类,该怎么做?
I Have a Java application and I need to convert it to an Android application
is there any resources to show how ? in Android developer site I didnt found anything like that!
I need to use the Java methods and classes in android ,How it can be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用标准的 android SDK (http://developer.android.com/sdk/index.html),所有代码都已经在 JAVA 中完成,并且应该已经可以在 android 中运行。只需按照说明设置 eclipse 和 android sdk 工具,然后将代码导入到 android 项目即可。
唯一必须更改的是 GUI(图形用户界面),因为它在 android 中有所不同。在 android sdk 页面中完成“hello world”教程和“Hello, Views”教程,这应该会让您正确了解如何在 android 中执行 GUI ;)
If you use the standard android SDK (http://developer.android.com/sdk/index.html) all code is already done in JAVA and should already work in android. Just follow the instructions to set up eclipse and android sdk tools and then import your code to an android project.
The only thing that must be changed is the GUI (graphical user interface) since it's different in android. Do the "hello world" tutorial and "Hello, Views" tutorial in the android sdk page that should put you in the right track of how you should do GUI's in android ;)