如何使用左侧顶部的actionbar sherlock图标进行操作?

时间:2014-05-09 14:00:39

标签: java android menu tabs actionbarsherlock

enter image description here

我想在上面的图片中显示sherlock actionbar图标上的点击监听器。我怎样才能做到这一点?请任何人都可以给出这个答案。

1 个答案:

答案 0 :(得分:1)

在您的活动中,

你的onCreate()

中的

getActionBar().setDisplayHomeAsUpEnabled(true);

然后

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    if (item.getItemId() == android.R.id.home) {
        //do your stuff here
    }
    return super.onOptionsItemSelected(item);
}