我在基础适配器类中获得了价值。我想显示其中的一半并将其设置为TextView
。如何在Adapter
班级中做到这一点?
holder.txtDiscount.setText(pojo.getCashback().substring(2)+"%"+"\nDiscount");
pojo.getCashback()
获取价值。我想显示它的一半。例如,如果我得到0.20,TextView
应显示0.10。
答案 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;