How to remove email icon from Android Studio emulation

后端 未结 5 1337
故里飘歌
故里飘歌 2020-12-29 02:53

How do I get rid of the email icon on the bottom of the phone? It is on all of them and it shouldn\'t be there.

5条回答
  •  梦毁少年i
    2020-12-29 03:07

    Go to activity_main.xml and delete this portion:

    
    

    And then go to MainActivity.java and delete this portion

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
            fab.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                            .setAction("Action", null).show();
                }
            });
    

    That's it. You should now see that the icon disappeared.

提交回复
热议问题