actionBar.setDisplayHomeAsUpEnabled(true);

来源:互联网 发布:逆战最新源码 编辑:程序博客网 时间:2024/04/30 04:52
actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);   //给左上角图标的左边加上一个返回的图标
//getActionBar().setHomeButtonEnabled(true);  //决定左上角的图标是否可以点击。没有向左的小图标。 true 图标可以点击  false 不可以点击。默认为true。
它的id是android.R.id.home。   @Override    public boolean onOptionsItemSelected(MenuItem item)    {        // TODO Auto-generated method stub        if(item.getItemId() == android.R.id.home)        {
        Intent parentIntent = new Intent(this, MainActivity.class);        parentIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);        parentIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);        parentIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);        finish();        startActivity(parentIntent);                return true;        }        return super.onOptionsItemSelected(item);    }

0 0
原创粉丝点击