2012-01-14 83 views
0

警告[I18N]硬編碼字符串「您想給Zohan一個電話嗎?」,應該使用@string資源在我的xml文件中我在我的文本條目中得到了一個警告通知,我很想知道如何修復它

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" 
> 

<TextView 
    android:id="@+id/TextView01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Would you like to give Zohan a call?" 
    android:layout_marginTop="200dp" 
    android:layout_marginLeft="20dp" 
    android:textSize="18dp"/> 

回答

0

可以儲存您的文章在資源屬性文件,並使用@符號並將其鏈接到您的XML文件。

有關更多信息,請參閱this link

相關問題