I m using the following line to make a Toast message displayed in my android application
Toast.makeText(InitActivity.this, InitActivity.this.getResources().getString(R.string.invalid_pin_code), Toast.LENGTH_SHORT).show();
But this message is displayed in the bootom of the page.
And I want to display it below an EditText in my page.
How to make that?
Anonymous User
23-Jan-2015You need add this as programmatically like this in your code:
toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);