我的代码工作正常,但我的问题是我需要在开始活动中创建一个后退按钮,
switch(view.getId()){
case R.id.button2:
Intent i = new Intent(Intent.ACTION_VIEW,Uri.parse("http://http://www.google.com/search?q=computer+science+engineering+books&tbm=bks&tbo=1&oq=computer+science+"));
***startActivity(i);***
break;
case R.id.button3:
Intent j = new Intent(Intent.ACTION_VIEW,Uri.parse("http://http://www.google.com/search?q=electrical+and+electronics+engineering+books&tbm=bks&tbo=1&oq=electrical+and+electronics+engineering"));
***startActivity(j);***
break;
当新活动开始时,它会进入网页,我需要在该网页活动中创建一个后退按钮。