防止用户更改输入法

Prevent user from changing input method

是否可以防止用户更改输入 method/keyboards?

我知道默认情况下不允许这样做,但也许可以使用一些 security/IT 设备管理功能?

我一直在四处寻找,但找不到确定的答案。

如果你想添加一些约束,这个特定的 EdiText 将不会必须使用特殊类型的键盘(数字键盘/文本)来输入。在 EditText 块中添加以下参数 layout/xyz.xml.

android:inputType=""//your specific type gies here e.g "number" "textUri" ...

详情

<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="142dp"
android:layout_marginTop="145dp"
android:ems="10" android:inputType="number">

您也可以从 properties 视图中选择适当的 EditText 来更改它。

据我进行的搜索显示,没有这种方法可以防止用户更改输入法。