I have a TextView with android:paddingRight and I want to support API 14
<TextView
android:id="@+id/account_name"
android:paddingEnd="@dimen/account_menu_chevron_size_plus_margin"
android:ellipsize="end"
android:gravity="center_vertical"
android:lines="1"
android:paddingRight="@dimen/account_menu_chevron_size_plus_margin"/>
I want to create two layouts (RTL and LTR).
I saw this post about LTR and RTL drawables
but how would I do the merge and folders for layouts xml?