PaddingStart & PaddingEnd seem to serve the same purpose as PaddingLeft & PaddingRight. Is there a difference between the two? In my case, I am using them with a TextView. At the moment, I have my code working with PaddingStart & PaddingEnd, but it sometimes worries me as to whether there may be a scenario in the future where they do not do the same thing. Also, I want to make sure I am consistent in which one I use. If I use PaddingStart & PaddingEnd, will a value be assigned to PaddingLeft & PaddingRight (and vice versa)? What happens if I assign values to both? I know that the values for PaddingStart & PaddingEnd are affected by the RTL settings (which I never use). I am also aware of PaddingHorizontal. All these different ways of specifying values that sound the same is sometimes confusing. My 2 main questions are:
Does assigning values to one affect the values of the others?
Which one takes priority if values are assigned to both?
If anyone knows of any good tutorials or blogs on the comparison of these properties, I would like to know about it. Thanks.