Shorten interaction counters
This commit is contained in:
parent
06cb335a0a
commit
dc90c09cea
|
@ -93,7 +93,7 @@ public class FooterStatusDisplayItem extends StatusDisplayItem{
|
||||||
|
|
||||||
private void bindButton(TextView btn, long count){
|
private void bindButton(TextView btn, long count){
|
||||||
if(count>0 && !item.hideCounts){
|
if(count>0 && !item.hideCounts){
|
||||||
btn.setText(DecimalFormat.getIntegerInstance().format(count));
|
btn.setText(UiUtils.abbreviateNumber(count));
|
||||||
btn.setCompoundDrawablePadding(V.dp(8));
|
btn.setCompoundDrawablePadding(V.dp(8));
|
||||||
}else{
|
}else{
|
||||||
btn.setText("");
|
btn.setText("");
|
||||||
|
|
Loading…
Reference in New Issue