From right to left, layout support triggers a lints warning in the xml editor

I recently upgraded to the new ADT plugin. Since then, whenever I create an xml layout using any tag like

android:layout_toRightOf="  " 
android:layout_alignParentLeft="true"

and basically anything with the word left and right warning lint shows that I am adding start and end tags for each left and right tag used to maintain the right to left layouts.

for example, I suggest changing the previous xml to

android:layout_toRightOf="  " 
android:layout_alignParentLeft="true"
android:layout_toEndOf="  " 
android:layout_alignParentStart="true"

Does anyone have the same problem? Is there a way for the eclipse xml editor to automatically add these tags when I move the view inside the layout or just completely disable these elements or objects? I tried to declare in my manifest

android:supportsRtl="false"

to disable the function, but this line requires api 17+, and my application supports api 9+.

- ?

+4
1

android:targetSdkVersion AndroidManifest.xml 17 , android:layout_toEndOf android:layout_toStartOf - .

android:targetSdkVersion 16 , Lint, .

+8

All Articles