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.
edittext で android:inputType="numberDecimal" を使用しました。
そのキーボードで / キーを表示したい。
たとえば、0.5 ではなく 1/2 を入力したいとします。
アンドロイドで可能ですか?
このようにしてみてください
<EditText android:id="@+id/editText1" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:digits="0123456789/.-"> </EditText>
はい、可能ですが、カスタム キーボードを作成します。