I read several tips here about this problem and the common answer is to use setGravity.
But it doesn't work on my phone ( Honor 6x - android 7.0)...
Here is my code:
CharSequence texte = "@string/txt_toast2";
int duration = Toast.LENGTH_LONG;
Toast toast = Toast.makeText(this, texte, duration);
toast.setGravity(Gravity.LEFT, 0, 0);
toast.show();
The toast always pop at bottom of the screen.
What is wrong with my code ?