This is what I am doing -->
//get entered texts from the edittexts,and convert to integers.
Integer value1 = Integer.parseInt(sand1.getText().toString());
//doing a calculation
Double calculatedValue1 = (9.5*value1);
//set the value to the textview, to display on screen.
result1.setText("$"+ calculatedValue1.toString());
result1 in the TextView looks like this now: ##.#
I need it to look like $##.##