2014-04-23 151 views
0

我想在我的preferences.xml文件中包含一個項目,其中包含special character @在android preferences.xml中包含特殊字符

  <EditTextPreference 
      android:title="@string/pref_char_pares_title" 
      android:summary="@string/pref_char_pares_summary" 
      android:key="charseppares" 
      android:defaultValue="@"/>  

但我不得不排隊錯誤android:defaultValue="@"

(錯誤:錯誤:沒有指定的資源類型(在「默認值」,值爲「@」)

我想使用的字符@等預先在我的琴絃。由於分隔符

回答

0

你能試試這個

<EditTextPreference 
      android:title="@string/pref_char_pares_title" 
      android:summary="@string/pref_char_pares_summary" 
      android:key="charseppares" 
      android:defaultValue="\@"/> 
0

//你還可以用像這樣深夜秀特殊字符

Unicode number: U+0040 
HTML-code: &#64; 
0

一點,但我有同樣的問題,也許這將是對別人有幫助的。

<EditTextPreference 
android:title="@string/pref_char_pares_title" 
android:summary="@string/pref_char_pares_summary" 
android:key="charseppares" 
android:defaultValue="\u0040"/>