I m just a beginner .And whenever I run this program it just ends... Please help...
the error is below ,,whenever i delete this ,the program works
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
calc = (Button) findViewById(R.id.calculate);
principal = (EditText) findViewById(R.id.princi);
Tame = (EditText) findViewById(R.id.time);
ratee = (EditText) findViewById(R.id.rate);
interst = (TextView) findViewById(R.id.interest);
amunt = (TextView) findViewById(R.id.amount);
//The error is here
prncpl = principal.getText().toString();
rte = ratee.getText().toString();
tme = Tame.getText().toString();
tme2 = Integer.parseInt(tme);
prncpl2 =Integer.parseInt(prncpl);
rte2 = Integer.parseInt(rte);
//Ends here