i'm trying to add float number but it's doesn't work well.
Result:
0.2
0.4
0.6
0.8
1.0
1.2
1.4000001
my code :
static public void add_order(Product d)
{
Float tt = Float.parseFloat(text_price.getText().toString());
tt += Float.parseFloat(d.getPrice());
text_price.setText(tt + "");
}
any idea ?