Android之toast

简单显示一个toast:

Toast ts = Toast.makeText(getBaseContext(),"hahe",Toast.LENGTH_LONG);

ts.show();

你可能感兴趣的:(Android之toast)