本文主要是介绍Android 人民币符号少一横问题解决方案,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
开发中会遇到人民币符号¥少一横的问题,可以复制以下羊角符号。
(1)复制“¥”使用这个字符。可行
(2)自定义组件,使用自带的字体(统一金额符号的显示)
public class MoneyTextView extends TextView{private static volatile Typeface moneyFont;public MoneyTextView(Context context) {this(context, null);}public MoneyTextView(Context context, AttributeSet attrs){super(context, attrs);setCustomFont(context);}private void setCustomFont(Context context) {if(moneyFont == null){synchronized(MoneyTextView.class){if(moneyFont == null){AssetManager assertMgr = context.getAssets();moneyFont = Typeface.createFromAsset(assertMgr, "fonts/money.otf");}}}setTypeface(moneyFont);}
}
这篇关于Android 人民币符号少一横问题解决方案的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!