gpt4 book ai didi

java - 如果在多个 EditText 中有输入,如何更改 TextView?

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

我正在尝试编写 android 程序,该程序显示在两个不同的 EditText 字段中指定的两个整数的最大公约数。首先,我用按钮完成了它,一切正常(你可以看到 onclick 监听器在下面的代码中被注释掉了)。现在我想这样做:当两个 EditText 都不为空时,应用程序会进行检查,然后自动开始计算并显示 gcd。当我开始在任何 EditText 字段中输入内容时,Buty 应用程序崩溃了。我还尝试仅在其中一个 EditText 上添加 TextChangeListener。一切都很好,直到我从其中一个字段中删除所有输入,然后应用程序再次崩溃。我才刚刚开始了解 android 开发,主要是通过修改在互联网上找到的示例来制作这个应用程序,所以也许我做错了什么......有人可以帮助我吗?谢谢

主 Activity .java

    public class MainActivity extends Activity 

{
EditText a;
EditText b;
TextView gcdResult;
Button calculateGcd;
int a, b, gcdValue

TextWatcher textWatcher = new TextWatcher(){
@Override
public void afterTextChanged(Editable s){}

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

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

AutoCalculateGcd();

}
};

@Override
protected void onCreate(Bundle savedInstanceState)
{


super.onCreate(savedInstanceState);
setContentView(R.layout.main);

a = (EditText)findViewById(R.id.aText1);
b = (EditText)findViewById(R.id.bText1);
gcdResult = (TextView)findViewById(R.id.resultTextView1);
calculateGcd = (Button)findViewById(R.id.calcButton1);

/* calculateGcd.setOnClickListener(new OnClickListener(){
public void onClick(View v){
AutoCalculateRatio();
}
});*/

a.addTextChangedListener(textWatcher);
b.addTextChangedListener(textWatcher);

}



//Euclidean alghorithm to find gcd
public static int gcd(int a, int b) {
if (b == 0) return w;
else return gcd(b a % b);

}
public static boolean isInputNotEmpty(EditText a, EditText b){
String a = a.getText().toString();
String b = b.getText().toString();
if(a.equals("") && b.equals("") ){
return false;
}
else{
return true;
}

}
public void AutoCalculateGcd(){
if(isInputNotEmpty(a, b)){
a = Integer.parseInt(width.getText().toString());
b = Integer.parseInt(height.getText().toString());
gcdValue = gcd(a, b);
ratioResult.setText(Integer.toString(gcdValue));
}
else{
//Toast.makeText(this, "No input", Toast.LENGTH_SHORT).show();
}
}
}

最佳答案

实际上,你应该替换

public static boolean isInputNotEmpty(EditText a, EditText b) {
String a = a.getText().toString();
String b = b.getText().toString();
if (a.equals("") && b.equals("")) {
return false;
}
else {
return true;
}
}

public static boolean isInputNotEmpty(EditText a, EditText b) {
String a = a.getText().toString();
String b = b.getText().toString();
if (a.equals("") || b.equals("")) {
return false;
}
else {
return true;
}
}

甚至

public static boolean isInputNotEmpty(EditText a, EditText b) {
return !(a.getText().toString().isEmpty() || b.getText().toString().isEmpty());
}

因为您想知道其中是否有任何一个 (||) 为空,而不是两个 (&&) 是否为空。

关于java - 如果在多个 EditText 中有输入,如何更改 TextView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45217397/

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