Android 应用程序布局不会更新,除非我重新启动 Eclipse
我对 Android 开发非常陌生。 我正在遵循本指南:http://www.vogella.de/articles/Android/文章.html#概述 由于某种原因,除非我重新启动 Eclipse,否则我的应用程序中的任何更改都不会反映出来。 如果我使用 ADB 卸载应用程序(模拟器本身)并不重要。 我点击“刷新”并运行了多次但没有效果。 我每次都完全改变了布局,但我必须重新启动 eclipse 本身(而不是 adt)才能使其反映更改。 我在这里错过了什么吗?谢谢。
Windows7 64 位上的 Eclipse 3.6.2
Im Very new to android development.
Im following this guide: http://www.vogella.de/articles/Android/article.html#overview
for some reason, any change in my application is not reflected unless i restart eclipse.
It doesnt matter if i uninstall the app using ADB, the emulator itselt.
I clicked "refresh" and run numerous times but not avail.
I completely changed the layout everytime but I had to restart eclipse itself (not the adt) in order for it to reflect changes.
Am I missing something here? thanks.
Eclipse 3.6.2 on Windows7 64bit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Eclipse 中右键单击项目名称,选择 Run As..、Android Application。然后您应该会看到一个弹出窗口,显示正在运行的模拟器。从列表中选择一项,然后单击“确定”。
还要确保您的应用程序没有任何编译错误,因为这肯定会把事情搞砸。
尝试运行后,检查 Eclipse 控制台,它应该显示“正在将 yourapp.apk 上传到设备...”或其他内容。它应该在模拟器上启动该应用程序。还要在控制台中查找任何错误。
Right click on the project name in Eclipse, select Run As.., Android Application. Then you should see a pop up window showing the running Emulators. Select one from the list, and click Ok.
Also make sure your app doesn't have any compile errors, as that could definitley screw things up.
After trying to run, check the Eclipse console and it should say "Uploading yourapp.apk to Device..." or something. And it should launch the app on the Emulator. Look for any errors in the Console as well.
我遇到了同样的问题,并通过更改或删除根元素(通常是视图组)的 android:id 属性来解决。我有运行 Win7 64 位的 Eclipse SDK 3.7.0
希望这有帮助
I had the same problem and worked around by changing or removing android:id attribute of a root element (typically viewgroup). I have Eclipse SDK 3.7.0 running Win7 64bit
Hope this helps