开发者

Android resources [closed]

开发者 https://www.devze.com 2023-04-03 10:18 出处:网络
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help 开发者_如何学JAVAcenter for guidance. Closed 11 years ago.

How to write "A &/or B" in an Android resource? Is the following correct?

<string-array name="name">
  <item>A &amp;//or</item>


You don't need the double slash; otherwise that looks correct. So:

<string-array name="name">
  <item>A &amp;/or B</item>
</string-array>
0

精彩评论

暂无评论...
验证码 换一张
取 消