Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 關於Android資源文件中出現百分號的問題

關於Android資源文件中出現百分號的問題

編輯:關於Android編程

編輯strings.xml的時候,提示 %編譯不通過。

http://aa.cc.com/dd?g=%rasdf

或者

Multiple annotations found at this line:
- error: Multiple substitutions specified in non-positional format; did you mean to add
the formatted="false" attribute?
- error: Unexpected end tag string

出現這個錯誤的原因主要是因為strings字串中包含百分號(%),

有幾種方式解決
1.用兩個百分號表示一個百分號即

http://aa.cc.com/dd?g=%%rasdf



2.用轉義符表示

http://aa.cc.com/dd?g=\%rasdf


3.根據錯誤提示可知,如果字符串無需格式化,可在

http://aa.cc.com/dd?g=%rasdf




  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved