Android Open Source - TextCounter Integer Formatter






From Project

Back to project page TextCounter.

License

The source code is released under:

MIT License

If you think the Android project TextCounter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.github.premnirmal.textcounter.formatters;
/* ww w.ja  v a 2s  .c  om*/
import com.github.premnirmal.textcounter.Formatter;

import java.text.NumberFormat;
import java.util.Locale;

/**
 * Created by prem on 10/28/14.
 */
public class IntegerFormatter implements Formatter {

    @Override
    public String format(String prefix, String suffix, float value) {
        return prefix + NumberFormat.getNumberInstance(Locale.US).format(value) + suffix;
    }
}




Java Source Code List

com.github.premnirmal.textcounter.CounterType.java
com.github.premnirmal.textcounter.CounterView.java
com.github.premnirmal.textcounter.Counter.java
com.github.premnirmal.textcounter.Formatter.java
com.github.premnirmal.textcounter.formatters.CommaSeparatedDecimalFormatter.java
com.github.premnirmal.textcounter.formatters.DecimalFormatter.java
com.github.premnirmal.textcounter.formatters.IntegerFormatter.java
com.github.premnirmal.textcounter.formatters.NoFormatter.java
com.github.premnirmal.textcounterdemo.ParanormalActivity.java