在android中,默認Toast進入屏幕底部。如何把吐司放在屏幕的中心?
Toast.makeText(getApplicationContext(), "this is my Toast message!!! =)",Toast.LENGTH_LONG).show();
我該如何將烤麪包放在屏幕中央。
在android中,默認Toast進入屏幕底部。如何把吐司放在屏幕的中心?
Toast.makeText(getApplicationContext(), "this is my Toast message!!! =)",Toast.LENGTH_LONG).show();
我該如何將烤麪包放在屏幕中央。
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
進一步信息,請 http://developer.android.com/guide/topics/ui/notifiers/toasts.html
有很多關於此的問題。使用toast.setGravity
功能爲您的目的。見How to change position of Toast in Android? EG(從問題的答案之一獲得):
Toast toast= Toast.makeText(getApplicationContext(),
"Your string here", Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
toast.show();
道具,不僅引用了存在的問題(並給它的功勞),但顯示該鏈接的答案。女士們,先生們應該如何回答這個問題。 – zgc7009 2014-09-18 18:41:45