While adding contacts , unable to move to next field of contact editor to add number

@Test
public void A() throws Exception{
WebElement addcontact= driver.findElement(By.id(“com.android.contacts:id/menu_add_contact”));//finding contacts
addcontact.click();//opening contacts
driver.findElement(By.name(“Phone contact”)).click();
driver.navigate().back();

driver.findElement(By.name("Name")).sendKeys("Donny");

driver.navigate().back();

WebElement e1=driver.findElement(By.xpath("//android.widget.EditText"));
e1.findElement(By.name(“Phone”)).click();

driver.findElement(By.name(“Phone”)).sendKeys(“1234567890”);
driver.findElement(By.name(“Done”)).click();

Note: Unable to edit number in number field last 2 lines where i am facing problem, Rather it writes number in Name tag itself

Try experimenting, and make sure you get the element you are looking for. If it’s typing into the wrong element, your selector must be finding the wrong element.