当前位置:网站首页>Do not concatenate text displayed with setText,use resource string with placeholders.
Do not concatenate text displayed with setText,use resource string with placeholders.
2022-06-10 11:47:00 【yechaoa】
General warning :
You should use resource strings to display text placeholders
And in xml The warning that Chinese characters are written directly in the layout means
String splicing is also good , Chinese characters written directly are also good ,
It should be in strings.xml Declaration in the document , Then the reference
for example:
layout.xml File reference
strings.xml Declaration in the document
About variable splicing parameters
such as :
mTextView.setText(" There is still... Before the Chinese New Year "+mDay+" God "+mMinute+" when "+mSecond+" second ");Statement :
<string name="delay_time"> There is still... Before the Chinese New Year %1$d God %2$d when %3$d second </string>Use in code :
mTextView.setText(String.format(getResources().getString(R.string.delay_time),mDay,mMinute,mSecond));The statement goes ahead , Parameter after Common formats : %n$s--->n Indicates the current number of parameters ( such as %1$s Medium 1 Represents the first parameter ),s Representative string %n$d--->n Indicates the current number of parameters ( such as %1$d Medium 1 Represents the first parameter ),d For integers %n$f--->n Indicates the current number of parameters ( such as %1$f Medium 1 Represents the first parameter ),f For floating-point numbers
边栏推荐
- 『忘了再学』Shell基础 — 29、AWK内置变量
- Source of concurrent bugs (I) - visibility
- 浅谈分布式事务
- The teaching staff at station B will teach you how to use the most complete record of the mask detection items of yolov5 (in-depth learning / target detection / pytorch)
- 如何编写产品营销策划方案
- After an error occurs in the source observable, it will be directly entered into the catchrror operator instead of the sequence in the pipe before entering the catchrror
- 现场勘察制度
- Unity打字机,使文本自动滚至文本框底部
- How can the team be dissolved...
- 安全工器具的使用和检查
猜你喜欢
随机推荐
海量数据:华为高斯数据库第一股(深度)
两个BigDecimal数据类型比较、加减乘除、格式化
IndexedDB 数据库的使用
证券期货业迎数据监管新规,IP-guard助力完善数据安全管理
入门篇:从 etcd 名字的由来,到安装部署和使用姿势
Flutter socketio example
Transfomer components and pytoch
【网易云信】深度剖析「圈组」关系系统设计 | 「圈组」技术系列文章
远程访问Tensorboard
一站式机器学习开业平台 MLflow 怎么样?
现场勘察制度
浅谈分布式事务
CVPR22 Oral | 港中文提出TransRank: 排序损失+自监督=SOTA
web开发发展趋势,web计划开发
TMUX use
zoom如何在加入会议时关闭microphone
International Archives day 𞓜 Hangao database enables digital archives construction with science and technology
How to compile product marketing plan
正常的controller结构
Localdatetime and string date conversion
![[PaperNote] Web3 Direction](/img/c0/1a9a3502461f26231ef1516ab871de.png)
![[cloud picture] every successful business system is inseparable from apig](/img/6c/6cb25c6b789dbd4f73ebb7f1922c1c.png)


![[PaperNote] Confidential Computing Direction](/img/1e/0a41a6bb6fd752061c4608d3133eed.png)



