我是android的新手,我正在尝试创建一个计算矩形区域的简单应用程序。
执行计算时,结果显示在指定的TextView上。
这是我目前用于计算矩形区域的代码:
package org.me.myandroidstuff;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Button;
import android.app.Activity;
import android.os.Bundle;
public class CalculateRectangleArea2Activity extends Activity implements OnClickListener{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
EditText length = (EditText) findViewById(R.id.txtLength);
EditText width = (EditText) findViewById(R.id.txtWidth);
TextView result = (TextView) findViewById(R.id.lblResult);
Button calculate = (Button) findViewById(R.id.btnCalculate);
calculate.setOnClickListener(this);
}
public void onClick(View v){
EditText length = (EditText) findViewById(R.id.txtLength);
EditText width = (EditText) findViewById(R.id.txtWidth);
calculateArea(length.getText().toString(), width.getText().toString());
}
private void calculateArea(String clength, String cwidth){
TextView result = (TextView) findViewById(R.id.lblResult);
int area = Integer.parseInt(clength)*Integer.parseInt(cwidth);
result.setText(area);
}}
package org.me.myandroidstuff;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Button;
import android.app.Activity;
import android.os.Bundle;
public class CalculateRectangleArea2Activity extends Activity implements OnClickListener{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
EditText length = (EditText) findViewById(R.id.txtLength);
EditText width = (EditText) findViewById(R.id.txtWidth);
TextView result = (TextView) findViewById(R.id.lblResult);
Button calculate = (Button) findViewById(R.id.btnCalculate);
calculate.setOnClickListener(this);
}
public void onClick(View v){
EditText length = (EditText) findViewById(R.id.txtLength);
EditText width = (EditText) findViewById(R.id.txtWidth);
calculateArea(length.getText().toString(), width.getText().toString());
}
private void calculateArea(String clength, String cwidth){
TextView result = (TextView) findViewById(R.id.lblResult);
int area = Integer.parseInt(clength)*Integer.parseInt(cwidth);
result.setText(area);
}}
这是我的main.xml文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<EditText
android:id="@+id/txtLength"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="number"/>
<EditText
android:id="@+id/txtWidth"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="number"/>
<TextView
android:id="@+id/lblResult"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/btnCalculate"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
单击按钮进行计算时,应用程序出现错误“应用程序calculateRectangleArea2已意外停止。请再试一次。”
我认为这与NullPointerException有关,尽管尝试通过logCat和断点跟踪错误并没有帮助。
非常感谢任何帮助:),谢谢!
答案 0 :(得分:1)
尝试使用:
result.setText(String.valueOf(area));
而不是:
result.setText(area);
setText()
期望一个String或CharSequence参数,而你传递一个int。这可能会导致您的崩溃。
此外,您无需一遍又一遍地获取每个视图的引用。将它们分配给onCreate()
中的实例变量就足够了。