paddingEnd seems to be missing, and the paddingBottom too (in the relative call).
If you look at the TextView class, both methods call the super.setPadding*(..); which then sets the same fields, so I think only the relative one should be called (but it will not support below API 19)
With an xml like this:
results in the code:
paddingEnd seems to be missing, and the paddingBottom too (in the relative call).
If you look at the TextView class, both methods call the super.setPadding*(..); which then sets the same fields, so I think only the relative one should be called (but it will not support below API 19)