[ANDROID] KOTLIN – FLOATINGACTIONBUTTON SETVISIBILITY
VisibilityAwareImageButton.setVisibility can only be called from within the same library group (groupid= com.android.support) This API has been flagged with a restriction that has not been met. FloatingActionButton 에 setVisibility 사용하려면 show(), hide()로 사용해야 합니다. fab.show() // view.VISIBLE fab.hide() // view.GONE
2020.12.10