Posts

Showing posts from February, 2020
Image
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();