gpt4 book ai didi

java - 为编辑文本设置特定的区域设置

转载 作者:行者123 更新时间:2023-12-01 12:52:25 25 4
gpt4 key购买 nike

我在 EditText 中输入时使用 TextWatcher 来编辑值这是我的 TextWatcher

public class NumberTextWatcher implements TextWatcher {

private DecimalFormat df;
private DecimalFormat dfnd;
private boolean hasFractionalPart;

private EditText et;

public NumberTextWatcher(EditText et)
{
df = new DecimalFormat("#,###");

df.setDecimalSeparatorAlwaysShown(true);
dfnd = new DecimalFormat("#,###");
this.et = et;
hasFractionalPart = false;
}

@SuppressWarnings("unused")
private static final String TAG = "NumberTextWatcher";

@Override
public void afterTextChanged(Editable s)
{
et.removeTextChangedListener(this);

try {
int inilen, endlen;
inilen = et.getText().length();

String v = s.toString().replace(String.valueOf(df.getDecimalFormatSymbols().getGroupingSeparator()), "");
Number n = df.parse(v);
int cp = et.getSelectionStart();
if (hasFractionalPart) {
et.setText(df.format(n));
} else {
et.setText(dfnd.format(n));
}
endlen = et.getText().length();
int sel = (cp + (endlen - inilen));
if (sel > 0 && sel <= et.getText().length()) {
et.setSelection(sel);
} else {
// place cursor at the end?
et.setSelection(et.getText().length() - 1);
}
} catch (NumberFormatException nfe) {
// do nothing?
} catch (ParseException e) {
// do nothing?
}

et.addTextChangedListener(this);
}

@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().contains(String.valueOf(df.getDecimalFormatSymbols().getDecimalSeparator())))
{
hasFractionalPart = true;
} else {
hasFractionalPart = false;
}
}

之后,我尝试使用以下代码将值解析为 double :

String amount1 = amount.getText().toString().replaceAll("[^\\d]", "");          
String duration1 = duration.getText().toString().replaceAll("[^\\d]", "");
String interest1 = interest.getText().toString().replaceAll("[^\\d]", "");

但我遇到的问题是,当设备默认语言不是英语时,它可以将字符串解析为 double ,所以我想我为 editTexts 设置了美国区域设置!这可能吗?如果不是,我应该怎么做才能将值解析为 double ?

DecimalFormat formatter = (DecimalFormat) NumberFormat.getInstance(Locale.US);

最佳答案

当您控制后端时,我发现最容易处理您期望的语言,并且已经进行了广泛的测试。因此,在处理我内部拥有的文件上的文件 IO 时,我总是在执行任何文件创建代码之前调用注释末尾处的调用。就我而言,它是

final DecimalFormat decimalFormat = (DecimalFormat) NumberFormat.getInstance(Locale.ENGLISH); //Format our data to two decimal places for brightness change.
String stringFormat = "#0.00";
decimalFormat.applyPattern(stringFormat);
decimalFormat.format(dataString);

然后,无论设备实际设置为哪种语言,您始终都会处理您习惯的区域设置。这将有助于处理可能使用不同数字格式的其他语言,例如在本例中,因为我正在处理数字。由于您正在处理 double ,因此您可能会遇到这个数字转换问题。但是,如果您正在处理来自 EditText 的输入,则仅在我的后端上使用的这种特定方法可能不适用。但我认为传达我的方法可能还是有一定帮助的;无论如何,希望如此。分享并没有什么坏处。

关于java - 为编辑文本设置特定的区域设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24121085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com