CUSTOM TOAST ;

agosto 17, 2018 doido 2.0 0 Comments

LayoutInflater i = getLayoutInflater();
View v = i.inflate(R.layout.toast,
(ViewGroup) findViewById(R.id.toastlinear1)
);
Toast t = Toast.makeText(getApplicationContext(),"",Toast.LENGTH_SHORT);
t.setView(v);
t.show();

0 Comments: