如何在TextView中显示格式化的金额?

时间:2016-09-06 07:55:48

标签: android format string-formatting number-formatting

我在String中有一个货币符号,在double中有一个金额。直到现在我显示的数量是这样的:

amount.setText(currency + " " + amount);

在某些地方,我有两个TextView来显示两者之间的填充量:

currency.setText(currency);
amount.setText(amount);

哪个好。但是,我将此代码移动到具有android数据绑定的布局文件中,是否有一种简单的方法来格式化并在android中显示金额?

symbol[space]amount类似,其中金额应格式化为2个小数点(如果存在),否则为整数。例如,100将显示为100,而不是100.00,但123.2将显示为123.20以及货币符号($ 123.20,$ 100)。

我知道有几种方法(资源字符串格式,NumberFormat)我可以做到(我还没有使用它们,只听说过它们),但是最简单,最干净的方法是什么?

我正在尝试查找并将所有2个文本视图转换为单个视图,并找到格式化和显示数量的统一方式。

谢谢。

7 个答案:

答案 0 :(得分:2)

受@ Nowshad的回答启发,我可以在没有带数据绑定库的外部库的情况下做到这一点。

在需要时提供布局文件中的货币和金额:

          <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="end"
                android:textAppearance="@style/TextAppearance.AppCompat.Large"
                app:amount="@{amount}"
                app:currency="@{currency}" />

并提供绑定适配器:

@BindingAdapter({"currency", "amount"})
    public static void setCurrencyAndAmount(TextView textView, String currency, double amount) {
        SpannableString spannableString = new SpannableString(currency + " " +
                new DecimalFormat("#.##").format(amount));

        spannableString.setSpan(new RelativeSizeSpan(0.6f), 0, 1, 0);

        textView.setText(spannableString);
    }

简单而有效。

答案 1 :(得分:1)

如果您使用此amount.setText(currency + " " + amount);而不是每次使用text.getText(),则必须将$和空格与textView分开,以便为实际金额进行竞争。

但是

在2 textView中,您不必为getText()方法执行任何直接获取金额的操作。

将此用于2个deciaml数字和0个十进制数字......

 double price=23.1000;
 int number=(int)((price*100)%100);
 yourTextView.setText(number==0?new DecimalFormat("0").format(price):new DecimalFormat("0.00").format(price));
  

输出: -

     

23.1000 -------&gt; 23.10

     

23.0007 -------&gt; 23

以上代码正在运行.....

注意: - 在上面的2中,我建议使用2 textView。这很简单。

答案 2 :(得分:1)

我认为您需要查看一些库,您会发现这里有一些很好的例子我推荐您最好的货币文本数据绑定库之一我使用它对我非常有用它保存我的代码行是{{ 3}}

<org.fabiomsr.moneytextview.MoneyTextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="32dp"
    app:symbol="$"
    app:symbolGravity="start|top"
    app:symbolTextSize="30sp"
    app:symbolMargin="6dp"
    app:amount="1256.56"
    app:baseTextSize="54sp"
    app:decimalDigitsTextSize="30sp"
    app:decimalMargin="6dp"
    app:includeDecimalSeparator="false"
    app:baseTextColor="#FBFFE3"/>

答案 3 :(得分:1)

如果您正在寻找一些简单易用的方法来格式化字符串并将其设置为TextView。

对于常用方法,请遵循此Android, Is it possible to format textview like System.out.format("%02d", n);?

如果要使用DataBinding,则需要设置自己的绑定方法,因为原始android:text属性为整数(字符串资源)字符串(文本)

在Android官方中,您可以使用类似的东西 (https://developer.android.com/topic/libraries/data-binding/index.html#expression_language

android:text="@{@string/nameFormat(firstName, lastName)}"
android:text="@{@plurals/banana(bananaCount)}"

但是如果你想以更灵活的方式使用它,你需要编写自己的绑定方法,如下所示。

在你的代码中,

 @BindingAdapter(value = {"android:text", "android:formatArgs"}, requireAll = false)
    public static void bindTextStr(TextView tv, String text, Object[] formatstr) {
        if (formatstr == null) {
            tv.setText(text);
        } else {
            tv.setText(String.format(text, formatstr));
        }
    }

在你的布局xml中,

<variable
            name="normalStr"
            type="java.lang.String"/>
        <variable name="data" type="Object[]"/>
...
<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@{normalStr}"
        android:formatArgs="@{data}"
        />

在活动代码中

    mBinding = DataBindingUtil.inflate(LayoutInflater.from(this), R.layout.activity_main, null, false);
    mBinding.setNormalStr("Data : 1(%s), 2(%d)");
    mBinding.setData(new Object[]{"Hello World",12345});

答案 4 :(得分:0)

amount.setText(currency + String.format("%.2f", amount));

答案 5 :(得分:0)

也许它很有用:MultiSizeTextView

<com.github.captain_miao.multisizetextview.MultiSizeTextView
    android:id="@+id/multi_text_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"

    app:beforeText="@string/before_text"
    app:beforeTextColor="@color/red"
    app:beforeTextSize="@dimen/text_size_small"
    app:beforeTextStyle="bold"

    app:centerText="@string/app_name"
    app:centerTextColor="@color/gray"
    app:centerTextSize="@dimen/text_size_big"

    app:afterText="@string/after_text"
    app:afterTextColor="@color/blue"
    app:afterTextSize="@dimen/text_size_small"
    app:afterTextStyle="bold"
    />

enter image description here

答案 6 :(得分:0)

这样做

int enduser=35000000;
TextView lblEnduser=(TextView)v.findViewById(R.id.lblEnduser);
lblEnduser.setText(String.format("%,.0f", Float.valueOf(enduser) ));

输出:35,000,000