@Override
  public Fragment getItem(int index) {
    if (tweet_fragment_code.get(index) == TAB_LINKS) {
      return new TweetLinksFragment(infoTweet);
    } else if (tweet_fragment_code.get(index) == TAB_CONVERSATION) {
      return new TweetConversationFragment(infoTweet);
    } else if (tweet_fragment_code.get(index) == TAB_MAP) {
      return new TweetMapFragment(infoTweet.getLatitude(), infoTweet.getLongitude());
    }

    return new Fragment();
  }
 void loadColumns() {
   if (LinksUtils.pullLinks(infoTweet.getText()).size() > 0) {
     tweet_fragment_code.add(TAB_LINKS);
     tweet_fragment_titles.add(context.getString(R.string.links));
   }
   if (infoTweet.hasConversation()) {
     tweet_fragment_code.add(TAB_CONVERSATION);
     tweet_fragment_titles.add(context.getString(R.string.conversation));
   }
   //        if (infoTweet.hasLocation()) {
   //            tweet_fragment_code.add(TAB_MAP);
   //            tweet_fragment_titles.add(context.getString(R.string.map));
   //        }
 }