Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本视图名称总计我想在前面添加一个 $ 符号,这样当我在文本视图中输入一个数字时,它将显示为货币,例如 $20 而不是 20
但是稍后在我的代码的其他部分,我还需要从此文本视图中获取价值,这需要排除 $ 符号
请告诉我最简单的方法来做到这一点
谢谢
您可以为美元符号创建一个图标,并将其设置为左侧可绘制对象:
TextView textView = (TextView) findViewById(R.id.myTxtView); textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon, 0, 0, 0);