我有一个Toast消息,默认设置是在屏幕底部显示它。我想知道如何定位TOP-center。有什么想法吗?
谢谢
答案 0 :(得分:3)
来自docs:
您可以使用setGravity(int,int,int)更改此位置 方法。这接受三个参数:一个重力常数,一个 x位置偏移和y位置偏移。
例如,如果你决定吐司应该出现在 左上角,您可以像这样设置重力:
toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);
如果你想轻推 向右的位置,增加第二个参数的值。 要轻推它,请增加最后一个参数的值。
所以在你的情况下,你可以这样做:
//create toast object
Toast myToast = Toast.makeText(getApplicationContext(), greetings[rndy.nextInt(6)], Toast.LENGTH_SHORT);
//set gravity
myToast.setGravity(Gravity.CENTER_HORIZONTAL); //<-- set gravity here
//and show it
myToast.show();
答案 1 :(得分:2)
我刚刚为我的一个项目实现了这个。这会将吐司放在您想要的任何视图下方。这种方法通常用于覆盖按钮的长按,以简要说明按钮的作用
以下是我们想要的按钮
private View.OnLongClickListener mShareFriendsOnLongClickListener = new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
int offsetY = 10;//getResources().getDimensionPixelSize(R.dimen.toast_offset_y);
Toast toast = Toast.makeText(mContext, R.string.share_with_friends, Toast.LENGTH_SHORT);
ScrapbookUtils.positionToast(toast, v, getWindow(), 0, offsetY);
toast.show();
return true;
}
};
然后是完成工作的实际方法。此实用程序可以让您在屏幕上的任何位置放置祝酒词。
public static void positionToast(Toast toast, View view, Window window, int offsetX, int offsetY) {
// toasts are positioned relatively to decor view, views relatively to their parents, we have to gather additional data to have a common coordinate system
Rect rect = new Rect();
window.getDecorView().getWindowVisibleDisplayFrame(rect);
// covert anchor view absolute position to a position which is relative to decor view
int[] viewLocation = new int[2];
view.getLocationInWindow(viewLocation);
int viewLeft = viewLocation[0] - rect.left;
int viewTop = viewLocation[1] - rect.top;
// measure toast to center it relatively to the anchor view
DisplayMetrics metrics = new DisplayMetrics();
window.getWindowManager().getDefaultDisplay().getMetrics(metrics);
int widthMeasureSpec = MeasureSpec.makeMeasureSpec(metrics.widthPixels, MeasureSpec.UNSPECIFIED);
int heightMeasureSpec = MeasureSpec.makeMeasureSpec(metrics.heightPixels, MeasureSpec.UNSPECIFIED);
toast.getView().measure(widthMeasureSpec, heightMeasureSpec);
int toastWidth = toast.getView().getMeasuredWidth();
// compute toast offsets
int toastX = viewLeft + (view.getWidth() - toastWidth) / 2 + offsetX;
int toastY = viewTop + view.getHeight() + offsetY;
toast.setGravity(Gravity.LEFT | Gravity.TOP, toastX, toastY);
}
答案 2 :(得分:1)
如果您不想使用最简单的Toast toast = Toast.makeText(context, text, duration).show()
方式,则可以自定义Toast
。这是我的代码,你可以试试这个:
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
如果您还不满意,Github
中有一个名为SuperToast
的项目。如果你研究它,我想你会受到很多启发。