android - Activity refuses to start -
android - Activity refuses to start -
now first activity displaying fine, clicking button not bring next activity. stepped through code:
@override public void onclick(view v) { intent configure = new intent(ondemandandautomatic_activity.this, configure_activity.class); ondemandandautomatic_activity.this.startactivity(configure); }
...and seemed run fine, nil happened, except breaking me debug perspective, verbiage in console pane:
[2012-02-01 21:01:35 - ddms] execute: returning [2012-02-01 21:01:35 - unexpected error while launching logcat. seek reselecting device.] device not found com.android.ddmlib.adbcommandrejectedexception: device not found @ com.android.ddmlib.adbhelper.setdevice(adbhelper.java:736) @ com.android.ddmlib.adbhelper.executeremotecommand(adbhelper.java:373) @ com.android.ddmlib.device.executeshellcommand(device.java:372) @ com.android.ddmuilib.logcat.logcatreceiver$1.run(logcatreceiver.java:100) @ java.lang.thread.run(unknown source)"
...any ideas on might cause this?
update: tried changing button click code this:
intent configure = new intent(this, configure_activity.class); startactivity(configure);
...but makes no difference.
the lastly line in console is:
[2012-02-01 21:31:46 - ddms] forwarding client reply 0x166 [debugger 8647-->390 active]
there nil in logcat...?!
dang confounded carcass!
the problem had neglected add together activity started manifest!
excuse me while go , berate myself mercilessly.
actually, i'm happy have realized egregious blunder.
android android-emulator android-intent android-activity
Comments
Post a Comment