On Android if the text is longer than the input field and it is set from OnAppearing method, RadEntry displays the ending of the text instead of the beginning.
Also, the issue can be reproduced
when the Entry text is set in code behind, for example on button click:
private void Button_Clicked(object sender, System.EventArgs e)
{
this.radEntry.Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ";
}
inside the AutoCompleteView control when select an item from the suggestion items list.