在基础适配器中显示来自pojo的原始的一半值

时间:2016-12-19 07:27:50

标签: android baseadapter

我在基础适配器类中获得了价值。我想显示其中的一半并将其设置为TextView。如何在Adapter班级中做到这一点?

holder.txtDiscount.setText(pojo.getCashback().substring(2)+"%"+"\nDiscount");

pojo.getCashback()获取价值。我想显示它的一半。例如,如果我得到0.20,TextView应显示0.10。

2 个答案:

答案 0 :(得分:2)

你唯一需要做的就是将你的价值除以2.喜欢:

double half = Integer.parseInt(pojo.getCashback().substring(2)) / 2.0;

然后在TextView中显示:

holder.txtDiscount.setText(half + "%" + "\nDiscount");

答案 1 :(得分:1)

你可以除以:

double totalValue = Double.parseDouble(YourString);
double result = ((double) totalValue ) / 2;