How to make modification Android Snackbar containing with LayoutInflater button and editText

前端 未结 4 1172
一个人的身影
一个人的身影 2021-01-23 06:36

My project now is how to make a Snackbar displayed at the bottom of the screen. The Snackbar contain with editText and three button for selection categories. I use LayoutInflat

4条回答
  •  醉酒成梦
    2021-01-23 07:24

    Try This,

    Button btn_feed_back = (Button)snackView.findViewById(R.id.feedback);
        btn_feed_back.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
    
            }
        });
    

提交回复
热议问题