【发布时间】:2021-03-04 20:23:09
【问题描述】:
我想限制用户可以在 Jetpack Compose 的 TextField 中键入的内容。我该怎么做?
xml中的等价物是inputType:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="Only numbers please!" />
【问题讨论】:
标签: android android-jetpack-compose android-compose-textfield