[android] added '~' symbol to taxi price

This commit is contained in:
Roman Romanov 2017-07-07 12:45:36 +04:00 committed by r.kuznetsov
parent eccdf95e5e
commit 5fc5fd7c0e

View file

@ -59,7 +59,8 @@ public class TaxiAdapter extends PagerAdapter
TextView timeAndPrice = (TextView) v.findViewById(R.id.arrival_time_price);
int time = Integer.parseInt(product.getTime());
CharSequence waitTime = RoutingController.formatRoutingTime(mContext, time, R.dimen.text_size_body_3);
timeAndPrice.setText(mContext.getString(R.string.taxi_wait, waitTime + "" + formatPrice(product)));
timeAndPrice.setText(mContext.getString(R.string.taxi_wait, waitTime + " • ~"
+ formatPrice(product)));
container.addView(v, 0);
return v;
}