I want to calculate the circumference of a circle and put the results in a TextView.
public void hesapla1(View v){
double pi = 3.14;
double yari = R.id.e1;
double alan = pi * Math.pow(yari,2);
sonuc1.setText((int) alan);
}