Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
381 views
in Technique[技术] by (71.8m points)

debugging - android studio debugger not stepping in to another activity from mainactivity

public class MainActivity extends AppCompatActivity implements FragmentManager.OnBackStackChangedListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_scrolling); //------ Here the debug control not stepping into the activity_scrolling code / breakpoints.

Tried different options in preference/debugger/stepping - any suggestions.

question from:https://stackoverflow.com/questions/65910978/android-studio-debugger-not-stepping-in-to-another-activity-from-mainactivity

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

My mistake.

setContentView(R.layout.activity_scrolling);

----- This only sets a layout to the current activity even though it is meant for ScrollingActivity. This line loads the activity to Mainactivity. (Android doesn't seem to have 1 to 1 exclusive binding between layouts and activities. Do they?!)

You need to start the activity in order to use it and debug it.

So, add this below,

    Intent myIntent = new Intent(MainActivity.this, ScrollingActivity.class);
    myIntent.putExtra("key", "value"); //Optional parameters
    MainActivity.this.startActivity(myIntent);

This enables the second activity loaded and debugger navigates to breakpoints inside the second activity.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...