Please Enable JavaScript!
Mohon Aktifkan Javascript![ Enable JavaScript ]

[ANDROID] KOTLIN – FLOATINGACTIONBUTTON SETVISIBILITY

2020. 12. 10. 10:47programming/android

728x90

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

 

 

728x90