我正在用Eclipse IDE编写一些简单的Android项目。
我在调试模式下遇到了一些麻烦。这是我的代码:
package com.test.myfirstapp;
import android.support.v7.app.ActionBarActivity;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//playMusicFromWeb();
forceError();
}
private void forceError(){
if (true)
throw new RuntimeException();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
当我调试项目时(Project Right CLick - > Debug As - > Android Application),调试只显示2个第一个方法调用,并且它没有显示什么是抛出异常的“最深”方法:
我在语句onCreate
处向forceError();
方法插入断点。然后再次调试,堆栈跟踪显示正确,但是当我单击Resume
时,调试仍会显示一些上述信息。
在我正在阅读的电子书中,调试显示堆栈中的所有方法跟踪异常:
所以,我的问题是:如何通过Debug显示完整的堆栈跟踪,而不手动设置任何断点?