今天对个人应用程序有点了解。从来没有尝试过Android ......任何帮助都表示赞赏。
我想要的是2个输入字段,取这些值& *点击calc按钮后,它们相互对比,给出结果。
对我来说看起来不错,但就像我说的那样,我对Java并不是那么好用。我的问题是,当我点击Calc按钮时,它强制关闭/停止工作。提前谢谢!
activity_main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
>
<EditText android:id="@+id/fuel"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/fuel" />
<EditText android:id="@+id/numLaps"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/numLaps" />
<Button
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/calc"
android:text="@string/calc"
android:onClick="calc"/>
<EditText
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/output"
android:inputType="number"
/>
</LinearLayout>
MainActivity.java
package com.example.iracingfuelcalc;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity implements android.view.View.OnClickListener {
Button calc;
EditText numLaps,fuel, output;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
fuel = (EditText)findViewById(R.id.fuel);
numLaps = (EditText)findViewById(R.id.numLaps);
output = (EditText)findViewById(R.id.output);
calc = (Button)findViewById(R.id.calc);
calc.setOnClickListener(this);
}
public void onClick(View arg0){
int fuelValue = -1;
try {
fuelValue = Integer.parseInt(fuel.getText().toString());
}
catch (NumberFormatException e)
{
//you don't have to do much here since fuelValue already has a default value (-1)
}
int lapsValue = -1;
try {
lapsValue = Integer.parseInt(numLaps.getText().toString());
}
catch (NumberFormatException e)
{
}
int result = 0;
result = fuelValue * lapsValue;
result += Integer.parseInt(output.getText().toString());
output.setText("" + result);
}
}
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">iRacing Fuel Calc</string>
<string name="fuel">Fuel per lap</string>
<string name="numLaps">Number of laps</string>
<string name="calc">Calculate</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_display_message">TEST</string>
<string name="output">0</string>
</resources>
答案 0 :(得分:4)
您的第一个问题是您实际上没有为output
提供价值。在onCreate()
做
output = (EditText)findViewById(R.id.output);
您可能还会遇到Integer解析问题,因为任何非数字都会引发NumberFormatException
。确保只输入数字或将EditText设置为以编程方式接受或验证。一种验证方法是使用try / catch块。 E.g。
int fuelValue = -1;
try {
fuelValue = Integer.parseInt(fuel.getText().toString());
}
catch (NumberFormatException e)
{
//you don't have to do much here since fuelValue already has a default value (-1)
}
如果需要,可以通过android:inputType
将EditText设置为仅接受数字。 docs有更多信息。
<EditText android:id="@+id/fuel"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/fuel"
android:inputType = "number"/>
答案 1 :(得分:0)
第二个是:
Integer.parseInt(fuel.getText().toString());
您没有验证该字段的值。您可以在操作线程中获取NumberFormaException,这会导致应用程序崩溃