package com.codeherenow.sicalculator;
import android.app.Activity;
import android.os.Bundle;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
import android.widget.TextView;
public class SICalculatorActivity extends Activity implements OnSeekBarChangeListener {
private TextView samount,sinterest,syears, slargetext;
private EditText eamounts,einterest;
private Button calculate;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sicalculator);
samount=(TextView) findViewById(R.id.amount_text);
sinterest=(TextView) findViewById(R.id.interest_text);
syears=(TextView) findViewById(R.id.years_progressBar);
slargetext=(TextView) findViewById(R.id.result_text);
eamounts =(EditText) findViewById(R.id.edit_Amount);
einterest=(EditText) findViewById(R.id.edit_Interest);
seekbar=(SeekBar) findViewById(R.id.seekBar1);
calculate=(Button) findViewById(R.id.button_calculate);
public void onProgressChanged(SeekBar arg0, int arg1, boolean arg2) {
public void onStartTrackingTouch(SeekBar arg0) {
public void onStopTrackingTouch(SeekBar arg0) {