Toast toast=Toast.makeText(ResultActivity.this, text, 100);
//通过setGravity()方法设置toast的显示位置,
//第二个参数和第三个参数分别代表距离屏幕左边和上边的像素,
//当都为0时,则显示在屏幕左上角。
toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);
toast.show();
本文出自 “安卓开发零基础” 博客,请务必保留此出处http://jinchao.blog.51cto.com/9651275/1585211
原文地址:http://jinchao.blog.51cto.com/9651275/1585211