gpt4 book ai didi

android - eclipse 机器人 : edittext input will be the output of other edittext

转载 作者:行者123 更新时间:2023-11-29 20:53:29 25 4
gpt4 key购买 nike

我有 3 个编辑文本,第一个用于输入价格,第二个用于输入百分比,第三个用于计算它们的输出。示例:第一个输入是 100000,第二个输入是 30,然后第三个 edittext 将自动填充 30000。是否可以这样做?

提前致谢,

问候,乔治

最佳答案

这是可能的。您可以为此使用 editText.addTextChangedListener(watcher)。

编辑1

    editText1 = (EditText) findViewById(R.id.editText1);
editText2 = (EditText) findViewById(R.id.editText2);
editText3 = (EditText) findViewById(R.id.editText3);

editText2.addTextChangedListener(new TextWatcher() {

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {

String text1 = editText1.getText().toString();
if (text1.length() != 0) {
int input1 = Integer.valueOf(text1);

int input2 = Integer.valueOf(s.toString());

int output = (input1 * input2) / 100;
editText3.setText(output + "");
}

}

@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {

}

@Override
public void afterTextChanged(Editable s) {
}
});

关于android - eclipse 机器人 : edittext input will be the output of other edittext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28448557/

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