forked from organicmaps/organicmaps
[android] added '~' symbol to taxi price
This commit is contained in:
parent
eccdf95e5e
commit
5fc5fd7c0e
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue