I have a activity B that is called by activity A, I want to debug the code in B. I have set the breakpoint, however the debug control never enters B.
public class A extends Activity {
Intent j = new Intent(mContext, B.class);
startActivity(j);
}
--
public class B extends Activity
{
some code
--Break Point-- // I want eclipse pointer to stop here while debugging.
}
When I debug in eclipse, although the class B is called from class A, the debbugger pointer never enters the new window, where I have placed a debug point in Class B. I am not able to take the pointer control to class B and stop at a specific point, which will help me verify certain variable values. Hope this time the question makes sense.