Convert float to CharSequence in android?

27,469

Solution 1

This should do the trick:

string s = Float.toString(myFloat);

Solution 2

String.valueOf(thisIsYourFloat) will work.

Share:
27,469
Parth
Author by

Parth

Computer Engineer

Updated on January 31, 2020

Comments

  • Parth
    Parth over 4 years

    I am making a throughput calculator where the user inputs data and the duration it took to download or upload and my intention is to display the throughput in varying units.

    However, I cannot find a way to convert float to CharSequence so I can append it to my TextView.

    Any help is appreciated.

    Thanks