如何快速调试android?

时间:2013-02-25 06:01:30

标签: android

当我修改一些代码时,我需要再次操作虚拟机。这花费了太多时间。

谁知道快速调试代码的一些好方法?

2 个答案:

答案 0 :(得分:0)

首先调试项目。不要关闭它并编辑代码然后运行或调试。您将看到在相同的开放式仿真器上进行调试并节省一些时间。 其他方法: - 您可以使用Android手机进行快速调试。关注http://developer.android.com/tools/extras/oem-usb.html

窗口7的这一步。

1.Connect your Android-powered device to your computer's USB port.
2.Right-click on Computer from your desktop or Windows Explorer, and select Manage.
3.Select Devices in the left pane.
4.Locate and expand Other device in the right pane.
5.Right-click the device name (such as Nexus S) and select Update Driver Software. This will     launch the Hardware Update Wizard.
6.Select Browse my computer for driver software and click Next.
7.Click Browse and locate the USB driver folder. (The Google USB Driver is located in <sdk>\extras\google\usb_driver\.)
8.Click Next to install the driver.

您的驱动程序将自动安装。

现在去设置你的Android设备并检查usb-debug模式。它应该启用。

然后运行你的android项目,它将自动在你的设备上运行或给你选择。这是最快的调试方法。

答案 1 :(得分:0)

使用eclipse中提供的调试工具并添加断点,您可以快速移动到任何地方......