现在我的第一个Activity显示正常,但单击该按钮不会显示下一个Activity。我介绍了这段代码:
@Override
public void onClick(View v) {
Intent configure = new Intent(OnDemandAndAutomatic_Activity.this, Configure_Activity.class);
OnDemandAndAutomatic_Activity.this.startActivity(configure);
}
...它似乎运行良好,但没有任何反应,除了让我进入Debug Perspective,在控制台窗格中显示这个词:
[2012-02-01 21:01:35 - ddms] execute: returning
[2012-02-01 21:01:35 - Unexpected error while launching logcat. Try reselecting the device.] device not found
com.android.ddmlib.AdbCommandRejectedException: device not found
at com.android.ddmlib.AdbHelper.setDevice(AdbHelper.java:736)
at com.android.ddmlib.AdbHelper.executeRemoteCommand(AdbHelper.java:373)
at com.android.ddmlib.Device.executeShellCommand(Device.java:372)
at com.android.ddmuilib.logcat.LogCatReceiver$1.run(LogCatReceiver.java:100)
at java.lang.Thread.run(Unknown Source)"
......关于可能导致这种情况的任何想法?
更新: 我也尝试将按钮点击代码更改为:
Intent configure = new Intent(this, Configure_Activity.class);
startActivity(configure);
......但没有区别。
Console中的最后一行是:
[2012-02-01 21:31:46 - ddms] Forwarding client reply 0x166 to [Debugger 8647-->390 active]
LogCat中什么都没有......?!
答案 0 :(得分:1)
我困惑的胴体!
问题是我忽略了将要启动的活动添加到清单中!
对不起,我去狠狠地指责自己。
实际上,我很高兴能够意识到我的严重错误。