안드로이드의 ActionBar Menu item을 경우에 따라서 보이게 할 수도 있고 숨길수도 있다.
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
val inflater: MenuInflater = menuInflater
inflater.inflate(R.menu.main_menu, menu)
val item = menu?.findItem(R.id.save)
item?.let {
item.isVisible = {your_case} == true
}
return true
}
'프로그래밍 > android' 카테고리의 다른 글
[android] Navigation current Fragment (0) | 2022.03.16 |
---|---|
[android] Disable ActionBar show/hide animation (0) | 2022.03.16 |
android ActionBar Menu Button 대문자를 소문자로 바꾸기 (0) | 2022.03.15 |
android gradle dependencies clean (0) | 2022.03.04 |
android CornerRoundedImageView (ImageView 라운드 처리하기) (0) | 2022.02.28 |