here is my layout code:
<EditText
android:id="@+id/trade_num_et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|right"
android:hint="@string/input_num"
android:inputType="number"
android:padding="5dp"
android:background="@color/transparent"
android:textColor="@color/white"
android:textColorHint="@color/gray"
android:textSize="@dimen/font_52" >
</EditText>
So how can I put set the cursor to the right of the HintText?Thank you~