Xamarin - Have button call keyboard

for each pair of Button/Entry do something like this

Button btnA = new Button { Text = "AA" };
Entry entryA = new Entry();

btnA.Clicked += (s,a) { entryA.Focus(); };