gpt4 book ai didi

java - 如何从文本字段获取文本

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

我想制作一个应用程序,它可以从文本字段 (id etxt1) 获取测试分数,然后单击按钮,它将在另一个文本字段 (id etxt2) 中显示成绩。

得分为 100-91 A 级。

分数为 90-81 B 级。

分数为 80-71 C 级。

等等。

以及如何使用“">=”这个东西。

这是我的代码:

Button bt1;
EditText etxt1;
EditText etxt2;
char grade = 0;
int score;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_activitywhatsyourgrade);
bt1 = (Button) findViewById(R.id.button1);
etxt1 = (EditText) findViewById(R.id.testscore);
final int score = etxt1.getTextAlignment();
etxt2 = (EditText) findViewById(R.id.editText2);
bt1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (score == 90){
etxt2.setText("A1");
}
else if (score ==80){
etxt2.setText("A2");
}
}
});
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main_activitywhatsyourgrade, menu);
return true;
}

最佳答案

有一些问题。

final int Score = etxt1.getTextAlignment(); 不正确,因为:

  1. 您可以在按钮监听器外部将其定义为 final,因此它永远不会根据输入而改变。

  2. getTextAlignment() 不是您要调用的函数。

修复方法如下:

  • 一起删除那行代码。我们将在按钮监听器中替换它。

  • 我们将使用getText()方法从 EditText 获取文本。它不会以字符串形式返回,而是以 Editable 形式返回。 ,所以我们将使用 toString()方法将其用作字符串。

  • 一旦我们获得了分数的字符串表示形式,我们就会将其解析为一个整数,以检查它处于哪个等级范围内。

此代码仅适用于您的按钮监听器。把它替换成这个就可以了。这是不言自明的,所以我不会再做任何解释。

bt1.setOnClickListener(new View.OnClickListener() { 
@Override
public void onClick(View v) {

String strScore = etxt1.getText().toString();

int score = Integer.parseInt(strScore);

if (score >= 91) {
etxt2.setText("A");
}
else if (score >= 81) {
etxt2.setText("B");
}
else if (score >= 81) {
etxt2.setText("B");
}
else if (score >= 71) {
etxt2.setText("C");
}
else if (score >= 61) {
etxt2.setText("D");
}
else {
etxt2.setText("F");
}
}
});
<小时/>

下一部分只是额外内容,如果您到目前为止还没有完全理解代码,则不必阅读本部分:

您可能会遇到这样的问题:如果按下按钮时该字段留空,您的应用程序将会崩溃。这是因为您试图将空字符串(即 "")解析为数值,这显然无法完成。如果该字段只是负号或小数点,也会发生同样的情况。

要解决这个问题,您只需将将字符串解析为整数的代码部分包装在 try-catch block 中即可。这将捕获因上述问题而引发的异常。像这样:

替换这一行:

int score = Integer.parseInt(strScore);

这样:

int score = 0;
try {
score = Integer.parseInt(strScore);
} catch (NumberFormatException nfe) {
// This means NFE was thrown, so the field text cannot be parsed
// to a numerical value. Just leave score = 0 as it was initialized
}

或者您可以使用 if 语句来测试输入是否有效(此解决方案更糟糕,因为它只能捕获三种情况,而可能存在更多情况,具体取决于键盘限制):

int score = 0;
// if the input is not blank, a negative sign or a decimal point
if (!(strScore.equals("") || strScore.equals("-") || strScore.equals(".")) {
score = Integer.parseInt(strScore);
}

关于java - 如何从文本字段获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24845965/

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