importClass(android.view.Gravity);
importClass(android.widget.Toast);
/*
//显示两秒
Toast.makeText(context, "hello world", Toast.LENGTH_SHORT).show();
//显示3.5秒
Toast.makeText(context, "hello world", Toast.LENGTH_LONG).show();
*/
t = Toast.makeText(context,"默认",Toast.LENGTH_SHORT)
t.setText("改变字符串");
//设置显示位置
t.setGravity(Gravity.TOP | Gravity.LEFT,100, 100);
t.show();