How to reduce EditText Hint size?
EditText
@marmor 's Approach is the best One. You can alter the number of --- tags to adjust size.
---
You can also define the text of Hint directly as I did
view.setHint(Html.fromHtml("" + "This is Hint" + ""));
Hope this will help.