从“设置”返回时,onResume未正确执行

时间:2011-05-09 13:56:19

标签: android settings onresume

在我的应用程序中,当没有WiFi连接时,我使用AlertDialog打开WiFi连接,然后调用WiFi设置屏幕。当我点击后退按钮时,我认为它进入了MainActivity的onResume()方法。在这个方法中,我调用了一个loadTweets方法,它重新加载了我的推文。当我从一个活动跳到另一个活动时,这是有效的。

当我回到WiFi设置屏幕时,调试器进入onResume方法,循环遍历loadTweets方法,但它不显示重新加载的推文。

我在这里错过了一步吗?

onResume()方法:

public void onResume(){
    super.onResume();
    checkWifi();   
    loadTweets();
}

LoadTweets方法:

private ArrayList<Tweets> loadTweets(){
ArrayList<Tweets> tweets = new ArrayList<Tweets>();
try {
        HttpClient hc = new DefaultHttpClient();
        HttpGet get = new
        HttpGet("http://search.twitter.com/search.json?q=JobXXL_be&rpp=5");
        HttpResponse rp = hc.execute(get);
        if(rp.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
        {
                String result = EntityUtils.toString(rp.getEntity());
                JSONObject root = new JSONObject(result);
                JSONArray sessions = root.getJSONArray("results");
                for (int i = 0; i < sessions.length(); i++) {
                        JSONObject session = sessions.getJSONObject(i);
                        Tweets tweet = new Tweets();
                        tweet.setTweet(session.getString("text"));
                        tweet.setUser(session.getString("from_user"));
                        tweet.setDate(session.getString("created_at").substring(5,16));
                        tweets.add(tweet);
                }
        }
} catch (Exception e) {
        Log.e("TwitterFeedActivity", "Error loading JSON", e);
 }
 return tweets;
}

TweetListAdapter类:

private class TweetListAdaptor extends ArrayAdapter<Tweets> {
                private ArrayList<Tweets> tweets;
                public TweetListAdaptor(Context context, int textViewResourceId, ArrayList<Tweets> tweets) {
                         super(context, textViewResourceId, tweets);
                         this.tweets = loadTweets();
                }
                @Override
                public View getView(int position, View convertView, ViewGroup parent) {
                        View v = convertView;
                        if (v == null) {
                                LayoutInflater vi = (LayoutInflater) getSystemService (Context.LAYOUT_INFLATER_SERVICE);
                                v = vi.inflate(R.layout.tweetitem, null);
                        }
                        Tweets o = tweets.get(position);
                        TextView tt = (TextView) v.findViewById(R.id.TWEET_TEXT);
                        TextView bt = (TextView) v.findViewById(R.id.TWEET_SCREEN_NAME);
                        TextView date = (TextView) v.findViewById(R.id.TWEET_CREATED_AT);
                        tt.setText(o.getTweet());
                        bt.setText(o.getUser());
                        date.setText(o.getDate());
                        return v;
                }

                public void setTweets(ArrayList<Tweets> tweet){
                    this.tweets = tweet;
                }
            }

1 个答案:

答案 0 :(得分:1)

此代码中没有任何内容涉及显示您的推文。它只检索推文,但你没有在onResume中显示它们,是吗?当您在活动之间跳转时,会调用onCreateonStart方法,您可能会在那里的某处显示推文。