android 应用中三星设备的键盘显示一半

Keyboard showing half on samsung devices in android app

我已经创建了一个 android 带有一个 textView 的应用程序。我应用了 属性,例如 inputType : number 和 maxLenght : 10。这个应用程序在除三星设备以外的所有设备上都运行良好。

我还附上了设备的屏幕截图

我不知道如何解决这个问题。它与应用程序或 OS 具体有关。

我的密码是

<EditText
            android:layout_width="wrap_content"
            android:layout_height="25dp"
            android:inputType="number"
            android:ems="10"
            android:id="@+id/editText"
            android:layout_alignTop="@+id/textView"
            android:layout_alignParentEnd="true"
            android:layout_toEndOf="@+id/textView"
            android:background="@drawable/text_box_background"
            android:layout_marginLeft="30dp"
            android:layout_marginRight="60dp"
            android:layout_alignStart="@+id/textView98"
            android:maxLength="10"
            android:paddingLeft="10dp" />

提前致谢!!!!!

解决了这个问题..........

我使用了 inputType 方法:phone 和 android:digit="012345678" 所以即使在 phone pad 中我们也只能按下按钮 012345678 其余所有按钮都不会被按下。

我也附上截图。 感谢大家