I would like to take some variables, listed here;
double dBench = (((Math.floor((dWeight*.664)/10))*10)-10)+dPush;
double dFlies = (dBench)*.6;
double dCurls = (dWeight*dPull)*.25;
double dLats = ((Math.floor((dWeight*.5)/10))*10);
System.out.println(dBench);
System.out.println(dFlies);
System.out.println(dCurls);
System.out.println(dLats);
But how do I get the println()’s to print to a textview or something? Thanks.
You do not have to do println to textview. TextView has method called setText and getText. setText can set text to TextView and getText can get text from textview. Look here for more info.
Android Tutorial for TextView
For double,