Code:-
View layoutValue = LayoutInflater.from(MainActivity.this).inflate(R.layout.custom_toast, null);
TextView textview1 = (TextView) layoutValue.findViewById(R.id.textview1);
textview1.setText(txt);
Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setView(layoutValue);
toast.show();

Comments
Post a Comment