I'm developping an Android application and I used the layout_alignStart tag. It worked well, until I tested my app on an older device. I then realized that layout_alignStart was only supported in api 17.
Reading the documentation, it made sense to replace all these layout_alignStart by layout_alignLeft.
However, I want to know what's the actual difference between these two tags?