setValue input not display in the app interface

use better something like:

// Java
        List<WebElement> inputs = driver.findElements(AppiumBy.className("android.widget.EditText"));
        // take first input
        inputs.get(0).sendKeys("your text");
        
        // if it will not work use keyboard
        tap(inputs.get(0));
        new Actions(driver).sendKeys("your text").perform();