在android中将regex%1$d转换为字符串

11dmarpk  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(373)

我正在吃 <string name="monthly_savings_other">Monthly savings\n$%1$d</string> 我知道这是因为 %1$d 我不能像字符串一样显示它,但我不知道如何正确格式化,虽然网上有很多例子,但我可以把我的头绕在它周围,我不知道如何处理它 %1$d 从android中的string文件夹开始格式化它。

public void binding(final OtherAccModel modelClass) {
        binding.setOther(modelClass);
        binding.executePendingBindings();

        setSpannableTextWithColor(binding.policyTV, R.string.policy_account_number_other, modelClass.getPolicy(), Color.BLACK);
        setSpannableTextWithColor(binding.companyNameTV,R.string.company_name_other,modelClass.getCompanyName(), Color.BLACK);
        setSpannableTextWithColor(binding.monthlySavingsTV,R.string.monthly_savings_other, String.valueOf(modelClass.getMonthlySavings()), Color.BLACK);
        setSpannableTextWithColor(binding.rorTV,R.string.return_of_value_other, String.valueOf(modelClass.getRor()), Color.BLACK);
        setSpannableTextWithColor(binding.accNameTV,R.string.type_other,modelClass.getType(), Color.BLACK);
        setSpannableTextWithColor(binding.accValueTV,R.string.current_value_other, String.valueOf(modelClass.getCurrentValue()), Color.BLACK);
    }

    void setSpannableTextWithColor(TextView view, int resourceId, String string, int color) {
        if (string == null)
            return;
        String fulltext = context.getResources().getString(resourceId, string);
        String part = string;
        SpannableString str = new SpannableString(fulltext);
        str.setSpan(new ForegroundColorSpan(color), fulltext.length() - part.length(), fulltext.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        view.setText(str);
    }

在线 String fulltext = context.getResources().getString(resourceId, string); 我犯了个错误

java.util.IllegalFormatConversionException: d != java.lang.String
cunj1qz1

cunj1qz11#

使用%1$s而不是%1$d。
d将数字格式化为十进制数字,并且只能与整数一起使用
欲了解更多信息,请阅读https://developer.android.com/guide/topics/resources/string-resource#formattingandstyling

相关问题