Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中String.xml: The reference to entity timestamp must end with the '' delimiter

Android中String.xml: The reference to entity timestamp must end with the '' delimiter

編輯:關於Android編程

The reference to entity "timestamp" must end with the ';' delimiter添加資源文件String.xml時出問題了:

The reference to entity "timestamp" must end with the ';' delimiter

這個錯誤就是 String.xml中設置鏈接URL的問題  

<string name="recommend_app_link">http://14.31.15.88/interface/tyCloud.php?sign=Njk4ZTM5OGNjYzI5MTAzOGMzZWY2NWY5NDZkOGI3MGQ=&timestamp=20130425000000&type=rank&rid=3</string>
 正確的如下:

<string name="recommend_app_link">http://14.31.15.88/interface/tyCloud.php?sign=Njk4ZTM5OGNjYzI5MTAzOGMzZWY2NWY5NDZkOGI3MGQ=&amp;timestamp=20130425000000&amp;type=rank&amp;rid=3</string>
 這大概是由xml文件中的編碼規則決定要這麼變換。

在xml文件中有以下幾類字符要進行轉義替換:

 

&lt;


<


小於號


&gt;


>


大於號


&amp;


&



&apos;


'


單引號


&quot;


"


雙引號

 

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