我在Android項目工作的資源字符串資源沒有發現我有上試本地計算機和服務器,我想過放棄基本的URL。我不斷收到如下所述的錯誤。正如我檢查一樣,這是獲取URL的方式,我做錯了什麼。在下面的錯誤和代碼之後。安卓:嘗試獲取列表中的活動課
07-20 13:19:54.612 3795-3795/com.example.TestLunch E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.TestLunch, PID: 3795
java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.TestLunch/com.example.TestLunch.Activity.RestaurantList}: android.content.res.Resources$NotFoundException: String resource ID #0x7f04000e
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2236)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2390)
at android.app.ActivityThread.access$800(ActivityThread.java:151)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5257)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x7f04000e
代碼拋出錯誤。
public class RestaurantList extends ListActivity {
// Below line throws the error.
String restaurantList = Resources.getSystem().getString(R.string.baseUrl)+"restaurant/listing";
}
的strings.xml:
<string name="baseUrl">http://192.168.178.60:8080/</string>
任何幫助將是很好。謝謝。
更新
這也失敗:
String restaurantList = getResources().getString(R.string.baseUrl)+"restaurant/listing";
更新
這也未能
public class RestaurantList extends ListActivity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.restos);
RestTemplate restTemplate = StaticRestTemplate.getRest();
String restaurantList = Resources.getSystem().getString(R.string.baseUrl)+"restaurant/listing";
}
爲什麼你就不能使用getResources()的getString(R.string.baseUrl); ? –
@ 4k3R:這在非活動類中不起作用,所以我開始使用它。 –
@ 4k3R:試過了,仍然是錯誤。 –