我正在開發一個應用程序,並且我正在收集錯誤。我在res/values/strings
中放入了一些字符串資源並保存了它。現在,如果我要訪問它在活動中,我得到了如下的錯誤Android,找不到字符串資源
07-13 11:16:20.050: ERROR/AndroidRuntime(5883): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x7f060006
而且我想不通爲什麼。 資源看起來是這樣的:
<string name="dialog_download_text">please wait while downloading</string>
,我想訪問它像
public void onCreate(Bundle b){
super.onCreate(b);
String s = getResources().getString(R.string.dialog_download_text);
}
我也看了成R.java,發現我進入
public static final class string {
public static final int dialog_download_cancel=0x7f060005;
public static final int dialog_download_text=0x7f060007;
public static final int dialog_download_title=0x7f060006;
}
我不知道該怎麼做,因爲我以前從來沒有像這樣的問題。 請幫幫我。謝謝大家。
這是針對之前版本的android IDE,它基於Eclipse,不適用於Android Studio。 – Augusto