Android 应用按返回键异常退出的问题

开发过程中遇到按返回键异常退出的问题,log显示为空指针异常,进一步产看是因为onActivityResult得到的Intent为空。

按返回键复写代码如下:

        @Override
	public void onBackPressed() {
		super.onBackPressed();
		Intent intent = new Intent();
		intent.putExtra("id", id);
		intent.putExtra("path", path);
		setResult(RESULT_CANCELED, intent);
		finish();
		
	}

查看Activity源码发现onBackPressed的默认实现如下:

    /** 
     * Called when the activity has detected the user's press of the back 
     * key.  The default implementation simply finishes the current activity, 
     * but you can override this to do whatever you want. 
     */  
    public void onBackPressed() {  
        finish();  
    }  
因此如果调用了super.onBackPressed(),就调用了finish()函数,因此之后的setResult函数根本没起作用。去掉了super.onBackPressed()之后,异常消失。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。