我已經開發出了下面的類來檢索XML文檔的節點列表: public class XMLDownloader {
public static NodeList getNodeList(){
String url = "http://localhost/xml/example.xml";
DefaultHttpClient client = new DefaultHtt
實際上,我從Web中獲取XML,解析並將其顯示在屏幕上。我得到的問題是,每次調用活動時活動都會嘗試從Web上加載數據(實際上,我的移動應用程序需要頻繁訪問服務器)因此,我在尋找以下解決方案: On Re-launch of an activity, the data from web should not be loaded again.
creating a class that i can