`what i am geting like 25.23866
i want to convert like below
i want result like 25.23
what i am getting 25.00
this is i am using
@BindingAdapter(value = {"changeRoundOff"}, requireAll = true)
public static void changeRoundOff(TextView textView,double floatData) {
if(floatData>0) {
textView.setText(String.format("%.2f", floatData));
}else
{
textView.setText("0");
}
}