Why when I add any widget and perform alignment operations on it, two options are automatically added, for example:
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
When using a version older than API 17 I should use:
android:layout_alignParentRight="true"
or
android:layout_alignParentLeft="true"
Is there any way that only one option appears, not two? So you don't have to delete it manually? Or maybe you can leave both options and it doesn't matter?