目前我使用这段代码:
int currentapiVersion = android.os.Build.VERSION.SDK_INT;
if (currentapiVersion >= android.os.Build.VERSION_CODES.HONEYCOMB){
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeButtonEnabled(true);
}
,但现在 Button 不应该只是一个返回功能。我喜欢开始其他活动:
Intent intent = new Intent(CurrentActivity.this, MainActivity.class);
startActivity(intent);
我知道我应该使用setOnClickListener
,但我不知道我在哪里调用监听器。