Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的编辑文本上使用了 android:inputType="numberDecimal" 。
我想在那个键盘上显示 / 键。
例如我想输入 1/2 而不是 0.5。
在安卓上可以吗?
试试这样
<EditText android:id="@+id/editText1" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:digits="0123456789/.-"> </EditText>
是的,这是可能的,但您制作自定义键盘。