There appears to be left padding automatically added when using a TextInputLayout to wrap an EditText as you can see in the screenshot below.
There is no padding added to the EditText in the layout XML, but when the view is rendered there appears to be left padding on the EditText. You can see this when comparing the TextView below the TextInputLayout.
How do I disable this left padding from being added?
Thank you!




You can just set the start and end padding on the inner EditText to 0dp.
Here's a screenshot with Show Layout Bounds turned on so you can see that the hints go all the way to the edge of the view.