如何在Android中打印带有两位小数的双精度数?

2023-03-20移动开发问题
9

本文介绍了如何在Android中打印带有两位小数的双精度数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

也许这是一个愚蠢的问题,但如果不是创建方法,我无法猜测如何解决它.也许有一种自然的方式"可以做到这一点,例如在 C 中.问题来了:

Maybe this is a silly question, but I cannot guess how to solve it if it's not creating a method. Maybe there's a "natural way" to do it, like in C for example. Here's the problem:

我有一个变量:

double a;

我只想用 2 或 3 位小数显示它.当我尝试展示它时:

And I want to show it only with 2 or 3 decimals. When I try to show it:

Text.setText("Value of a: " + String.valueOf(a));

它给出了类似的东西:

a 的值:5.234966145

Value of a: 5.234966145

我只想

a 的值:5.23

在不改变 a 的实际值的情况下,它显示的是近似数,但适用于实数.

Without changing the real value of a so it shows the approximate number but works with the real number.

推荐答案

yourTextView.setText(String.format("Value of a: %.2f", a));

这篇关于如何在Android中打印带有两位小数的双精度数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

Cocos2d - 设置设备/屏幕方向
Cocos2d - Setting Device/Screen Orientation(Cocos2d - 设置设备/屏幕方向)...
2024-08-12 移动开发问题
19

如何在 COCOS2d Android 中使用 CClistview?
How can I use CClistview in COCOS2d Android?(如何在 COCOS2d Android 中使用 CClistview?)...
2024-08-12 移动开发问题
5

如何检查 iPhone 的语言设置?
How to check the iPhone language settings?(如何检查 iPhone 的语言设置?)...
2024-08-12 移动开发问题
9

cocos2d中如何在CCLabelTTF中设置背景色
How to set background color in CCLabelTTF in cocos2d(cocos2d中如何在CCLabelTTF中设置背景色)...
2024-08-12 移动开发问题
5

cocos2d-android:如何显示分数
cocos2d-android: how to display score(cocos2d-android:如何显示分数)...
2024-08-11 移动开发问题
7

cocos2d 3.x CCButton 设置精灵帧图像扭曲和回调/块不起作用
cocos2d 3.x CCButton set the sprite frame image distorted and callback/block not working(cocos2d 3.x CCButton 设置精灵帧图像扭曲和回调/块不起作用)...
2024-08-11 移动开发问题
7