Как показать и скрыть Google FloatingAction Button - PullRequest
0 голосов
/ 28 февраля 2020

Я хочу показать / скрыть кнопку Google Material Floating Action программно. Я использую библиотеку Google Material

implementation 'com.google.android.material:material:1.1.0'

и использую следующий код

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_settings);
    FloatingActionButton fab = findViewById(R.id.fab);

    fab.hide() // This is the method to hide the button as the Documentation But This does not hide the button

    fab.setVisibility(View.GONE) // Neither this work, 
}

Есть ли какой-либо другой метод Speci c, чтобы скрыть его?

...