In my android application I have a Spinner. problem is come when I check the app in a galaxy not 2 phone. for android version 2.3 and other versions list of items in the spinner are shown in the left side of application. But for latest version first and last arabic strings are shown in right side,
I want all of them to be float to left side like in other devices. Without going for a custom Spinner view can't we handle this easily. But if there is no option than going to custom Spinner, let me know.
here is the screenshot to get more clear idea.

Here is the spinner code in xml file
<Spinner
android:id="@+id/spinner1"
android:layout_width="262dp"
android:layout_height="45dp"
android:layout_gravity="top|center"
android:gravity="left"
android:background="@drawable/spinner"
android:paddingLeft="@dimen/padding_small" />