码迷,mamicode.com
首页 > 移动开发 > 详细

android TextView自动显示成科学计算法

时间:2018-08-19 16:14:18      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:for   val   find   cal   orm   string   科学   pre   ext   

就例如:

        TextView textView1 = (TextView) findViewById(R.id.TextView1);
        double test = 99999999999.99;
        textView1.setText(String.valueOf(test));

会显示成9.999999999E10

解决办法

修改成:

        double test = 99999999999.99;
        TextView textView2 = (TextView) findViewById(R.id.TextView2);
        textView2.setText(String.format(Locale.ENGLISH, "%.3f", test));

会显示99999999999.990

android TextView自动显示成科学计算法

标签:for   val   find   cal   orm   string   科学   pre   ext   

原文地址:https://www.cnblogs.com/momoshengxiao/p/9501461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!