人生处万类,知识最为贤。这篇文章主要讲述android TextView自动显示成科学计算法相关的知识,希望能为你提供帮助。
就例如:
TextView textView1 = (TextView) findViewById(R.id.TextView1); double test = 99999999999.99; textView1.setText(String.valueOf(test));
会显示成9.999999999E10
解决办法
【android TextView自动显示成科学计算法】修改成:
double test = 99999999999.99; TextView textView2 = (TextView) findViewById(R.id.TextView2); textView2.setText(String.format(Locale.ENGLISH, "%.3f", test));
会显示99999999999.990
推荐阅读
- AndroidStudio解决提示(Failed to load AppCompat ActionBar with unknown error)
- Android开发——Drawable与Bitmap知识
- Mybatis之mapper.xml配置文件中的#{}和${}
- Java:StringBuilderappend换行问题
- 475. Heaters (start binary search, appplication for binary search)
- AndroidRecyclerView网格布局
- Spring Angular搜索属性应用实例图解
- Spring Angular文件上传应用程序示例图解
- Spring Angular CRUD应用实例图解