0

私は Android の初心者で、Twitter のトレンドを取得したいのですが、トレンドの null 値を取得しています。どこで間違えたのか分かりません。

List<Trends> list; Trends trends; private Twitter mTwitter;

public  List<Trends>getDailyTrends(Date date, boolean excludeHashTags){
    try{
        list = mTwitter.getDailyTrends(date, excludeHashTags);
        Log.d("ab to aaja<><><><><>", ""+list);
    }catch (TwitterException e)
    {
        e.printStackTrace();
    }
    return list;

}
4

1 に答える 1

0

これを試して :

   public  List<Trends>getDailyTrends(Date date, boolean excludeHashTags){
        List<Trends> auxList = new ArrayList<Trends>;
        try{
            auxList = mTwitter.getDailyTrends(date, excludeHashTags);
            Log.d("ab to aaja<><><><><>", ""+list);
        }catch (TwitterException e)
        {
            e.printStackTrace();
        }
        return auxList;
    }

this.list = getDailyTrends(new SimpleDateFormat("yyyy-MM-dd").parse("2012-07-14"), true);

auxListがnullでないかどうかも確認してください

于 2012-07-14T15:19:42.230 に答える