要实现输入类型为number的Android EditText使文本更改的值始终大于0,可以通过以下步骤实现:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" />
EditText editText = findViewById(R.id.editText);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// 在文本变化之前的操作
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// 在文本变化时的操作
if (!s.toString().isEmpty()) {
int value = Integer.parseInt(s.toString());
if (value <= 0) {
editText.setText("1");
}
}
}
@Override
public void afterTextChanged(Editable s) {
// 在文本变化之后的操作
}
});
这样,当用户在EditText中输入一个小于等于0的值时,它会自动被修改为1。
推荐的腾讯云相关产品:腾讯云移动开发平台(https://cloud.tencent.com/product/mpp)
领取专属 10元无门槛券
手把手带您无忧上云