I am new to Android Programming. I am doing this project from the book. I wrote the class to return the name and the address and then wrote the OnClickListener for it but it doesn't seem to work when i click the save Button. Here is my Two Java file: \[code\]package com.example.lunchlist;public class Returant { private String name=""; private String address=""; public String getName() { return(name); } public void setName(String name) { this.name=name; } public String getAddress() { return(address); } public void setAddress(String address) { this.address=address; } }\[/code\]Here is my MainActivity File: \[code\]import android.view.Menu;import android.view.View;import android.widget.Button;import android.widget.EditText;public class MainActivity extends Activity { Returant r = new Returant(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button save = (Button) findViewById(R.id.save); save.setOnClickListener(onSave); } private View.OnClickListener onSave=new View.OnClickListener() { public void onClick(View v) { EditText name=(EditText)findViewById(R.id.name); EditText address=(EditText)findViewById(R.id.addr); r.setName(name.getText().toString()); r.setAddress(address.getText().toString()); } }; }\[/code\]