How to Customise Toast in Android?

前端 未结 6 542
礼貌的吻别
礼貌的吻别 2021-01-05 05:06

Is it possible to make Customize Toast in Android. like if can we place in it image icon and place button.

6条回答
  •  清歌不尽
    2021-01-05 05:32

    XML FILE

    enter code here`
    
    
    

    '

    JAVA CODE

     LayoutInflater inflater = getLayoutInflater();
    View layout = inflater.inflate(R.layout.custom_toast,
                                   (ViewGroup) findViewById(R.id.toast_layout_root));
    
    TextView text = (TextView) layout.findViewById(R.id.text);
    text.setText("This is a custom toast");
    
    Toast toast = new Toast(getApplicationContext());
    toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
    toast.setDuration(Toast.LENGTH_LONG);
    toast.setView(layout);
    toast.show();
    

提交回复
热议问题