・アプリアイコンにホームボタン機能を持たせる。
1 2 |
ActionBar actionBar = getActionBar(); actionBar.setHomeButtonEnabled(true); |
・アプリアイコンに戻るボタン機能を持たせる。
1 2 |
ActionBar actionBar = getActionBar(); actionBar.setDisplayHomeAsUpEnabled(true); |
※ただし、本来の戻るボタンと違い、アプリ内のみの遷移となる。戻るボタンはアプリを超えて遷移する。 参考
クリックイベントを拾う
1 2 3 4 5 6 7 8 9 |
@Override public boolean onOptionsItemSelected(MenuItem item){ switch(item.getItemId()){ case android.R.id.home: //アプリアイコンクリック finish(); return true; } } |