2014년 10월 7일 화요일

[android] 뒤로가기 버튼, actionbar Navigating Up with the App Icon

액션바에서 그림과 같이 appicon 옆에 있는 뒤로가기 버튼을 생성하고 싶다면 setDisplayHomeAsUpEnabled(true);  추가.





1
2
3
4
5
6
7
8
9
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_details);
    ActionBar actionBar = getSupportActionBar();
    actionBar.setDisplayHomeAsUpEnabled(true);
    ...
}

댓글 없음:

댓글 쓰기