I'm trying to make an android application where the user enters a value then they press a button below. When they press the button I want it to add the edit text value to itself then display the result on the screen. For example if the user typed in two in the edit text, when they press the button I want the app to do 2+2 then display the result 4 on the screen. Here's what I have so far...
int AnsNum;
EditText Km;
Button KmPL;
TextView Ans;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Km = (EditText) findViewById(R.id.etKm);
KmPL = (Button) findViewById(R.id.button1);
Ans = (TextView) findViewById(R.id.tvAns);
KmPL.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
Km = (EditText) findViewById(R.id.etKm);
int etKm = new Integer(Km.getText().toString()).intValue();
int AnsNum = etKm+etKm;
Ans.setText(AnsNum);
}
});
}
In the main java file and...
<TextView
android:id="@+id/tvAns"
android:textSize="100dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="0" />
<EditText
android:id="@+id/etKm"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Km"
android:textSize="100dp"
android:inputType="numberSigned" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="75dp"
android:text="Km per Litres" />
in the main.xml file. However whenever I try running the app weather on my phone or on the emulator it says it has stopped unexpectedly please try again. I have tried several times but it just doesnt work.
I understand this is probably a stupid question but I am brand new to programming and it would help me loads if you could teach me what I'm doing wrong.