我正在使用Android应用。一切似乎工作正常,但我想让我的代码比现在更短。您可能会认为很多行都是重复的:
public void ButtonKlick (View view) {
double zahl1;
double zahl2;
double zahl3;
double zahl4;
double Ergebnis = 0;
EditText Feld1 = (EditText)findViewById(R.id.zahl1);
EditText Feld2 = (EditText)findViewById(R.id.zahl2);
EditText Feld3 = (EditText)findViewById(R.id.zahl3);
EditText Feld4 = (EditText)findViewById(R.id.zahl4);
EditText FeldErgebnis = (EditText)findViewById(R.id.etErgebnis);
if (Feld1.getText().toString().length() == 0 ) {
return;
}
if (Feld2.getText().toString().length() == 0 ) {
return;
}
if (Feld3.getText().toString().length() == 0 ) {
return;
}
if (Feld4.getText().toString().length() == 0 ) {
return;
}
zahl1 = Double.parseDouble(Feld1.getText().toString());
zahl2 = Double.parseDouble(Feld2.getText().toString());
zahl3 = Double.parseDouble(Feld3.getText().toString());
zahl4 = Double.parseDouble(Feld4.getText().toString());
Ergebnis = Math.sqrt(Math.pow(zahl4 - zahl3, 2) + Math.pow(zahl2 - zahl1, 2));
FeldErgebnis.setText(String.valueOf(Ergebnis));
}
这一切都始于以下两种方法:
double zahl1;
到
zahl4 = Double.parseDouble(Feld4.getText().toString());
是否有任何具体方法可以摆脱这些相同的行?
答案 0 :(得分:2)
编写一个实用工具方法,如:
private double getDouble(EditText tv) {
return Double.parseDouble(tv.getText().toString());
}
并称之为:
zahl4 = getDouble(Field4);
编辑:
private double getDouble(int viewId) {
View view = findViewById(viewId);
double toReturn = 0;
// instanceOf returns false for null values
if (view instanceOf EditText)
toReturn = Double.parseDouble(view.getText().toString());
return toReturn;
}
答案 1 :(得分:1)
是。不要为每个Button
使用不同的函数,只需使用一个并在xml中获取id of the
按钮. I assume you are declaring the
onClick`。如果这些都做同样的事情,只需声明相同的功能
public void ButtonKlick (View view) {
switch (view.getId())
{
case (R.id.button1Id):
// do specific stuff for button with id button1Id like
Ergebnis = Math.sqrt(Math.pow(zahl4 - zahl3, 2) + Math.pow(zahl2 - zahl1, 2));
break;
case (R.id.button2Id):
Ergebnis = (zahl4 - zahl3) / (zahl2 - zahl1);
break;
...
}
double zahl1;
double zahl2;
double zahl3;
double zahl4;
double Ergebnis = 0;
EditText Feld1 = (EditText)findViewById(R.id.zahl1);
EditText Feld2 = (EditText)findViewById(R.id.zahl2);
EditText Feld3 = (EditText)findViewById(R.id.zahl3);
EditText Feld4 = (EditText)findViewById(R.id.zahl4);
EditText FeldErgebnis = (EditText)findViewById(R.id.etErgebnis);
if (Feld1.getText().toString().length() == 0 ) {
return;
}
if (Feld2.getText().toString().length() == 0 ) {
return;
}
if (Feld3.getText().toString().length() == 0 ) {
return;
}
if (Feld4.getText().toString().length() == 0 ) {
return;
}
zahl1 = Double.parseDouble(Feld1.getText().toString());
zahl2 = Double.parseDouble(Feld2.getText().toString());
zahl3 = Double.parseDouble(Feld3.getText().toString());
zahl4 = Double.parseDouble(Feld4.getText().toString());
Ergebnis = Math.sqrt(Math.pow(zahl4 - zahl3, 2) + Math.pow(zahl2 - zahl1, 2));
FeldErgebnis.setText(String.valueOf(Ergebnis));
}
如果我理解你想要什么,那么这将不需要不同的方法来做同样的事情