Hi,

ive developed a RSS viewer app. The problem is sometimes i get
truncated titles and sometimes when i refresh it i get the complete
titles. is this a memory leak thing?

i get my data thru rss and place it in an array.

private ArrayList<String> readRSSFromFile(){
                ArrayList<String> rssArr = null;
                Properties prop;
                try{
                        rssArr = new ArrayList<String>();
                        prop = readPropertiesFromFile();
                        if(prop!=null){
                                for(int i=0;i<prop.size();i++){
                                        
rssArr.add((String)prop.getProperty("feed"+i));
                                }
                        }
                }catch(Exception e){
                        e.printStackTrace();
                }
                return rssArr;
        }

if its memory leak how can i fix this?

thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to