Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app in which i am fetching list of facebook friends with their names and birthdays.

Like:-

Juner

10/18/1989

Rahul

05/21/1989

but now i want to show something like this:

Juner

Turns 28 today

Rahul

Turns 19 in 10 days

MyFacebook.java

  public void init(Main main) {
    this.main = main;
    mFacebook = new Facebook(APP_ID);
    isReady = false;
    mAsyncRunner = new AsyncFacebookRunner(mFacebook);
    mFacebook.authorize(main, new String[] { "publish_stream",
            "friends_birthday" }, new MyAuthorizeListener());
}

// ref- http://developers.facebook.com/docs/reference/api/user/
public Report reLoadAllFriends() {
    if (!isReady) {
        Log.v(TAG, "myfacebook.reloadallfriends Not ready yet!");
        return new Report(false, "Not ready yet!");
    }

    Bundle params = new Bundle();
    params.putString("fields", "id,name,birthday,picture");
    mAsyncRunner.request("me/friends", params, new MyRequestListener(
            RequestType.FRIEND_LIST));

    Log.v(TAG, "myfacebook.reloadallfriends Fetch started.");
    return new Report(true, "Fetch started");
}

MyLocalDB.java

  public List<MyFriend> getFriendsFilteredBy(Filter filterBy) {
    List<MyFriend> friends = new ArrayList<MyFriend>();
    String[] resultColumns = new String[] { KEY_ID, KEY_FBID, KEY_NAME,
            KEY_BIRTHDAY, KEY_PIC, KEY_BDAYMESSAGE, KEY_AUTOPOST };

    String selection = null;
    String[] selectionArgs = null;
    String orderBy = KEY_BIRTHDAY;

    if (filterBy != null) {
        switch (filterBy) {
        case MONTH:
            selection = KEY_BIRTHDAY + " LIKE ?";
            selectionArgs = new String[1];
            selectionArgs[0] = MyUtils.getCurrentMonth() + "%";
            orderBy = KEY_BIRTHDAY;
            Log.v(TAG, "localdb.month- " + selectionArgs[0]);
            break;
        case WEEK:
            selection = KEY_BIRTHDAY + " >= ? and " + KEY_BIRTHDAY
                    + " <= ?";
            selectionArgs = new String[2];
            selectionArgs[0] = MyUtils.getCurrentMonth() + "/"
                    + MyUtils.getCurrentWeekDays()[0];
            selectionArgs[1] = MyUtils.getCurrentMonth() + "/"
                    + MyUtils.getCurrentWeekDays()[1];
            orderBy = KEY_BIRTHDAY;
            Log.v(TAG, "localdb.week- " + selectionArgs[0] + ","
                    + selectionArgs[1]);
            break;
        case DAY:
            selection = KEY_BIRTHDAY + " LIKE ?";
            selectionArgs = new String[1];
            selectionArgs[0] = MyUtils.getCurrentMonth() + "/"
                    + MyUtils.getCurrentWeekDays()[0] + "%";
            selectionArgs[0] = "12/23%";
            Log.v(TAG, "localdb.day- " + selectionArgs[0]);
            break;
        default:
            break;
        }
    }

    Cursor allRows = localDB.query(false, TABLE_FRIEND, resultColumns,
            selection, selectionArgs, null, null, orderBy, null);

    if (allRows.moveToNext()) {
        do {
            String fbId = allRows.getString(FBID_COLUMN);
            String name = allRows.getString(NAME_COLUMN);
            String birthday = allRows.getString(BIRTHDAY_COLUMN);
            String picture = allRows.getString(PIC_COLUMN);
            String message = allRows.getString(BDAYMESSAGE_COLUMN);
            boolean isAutoPost = allRows.getString
                            (AUTOPOST_COLUMN).equals(
                    "false") ? false : true;
            MyFriend friend = new MyFriend
                            (fbId, name, birthday, picture,
                    message, isAutoPost);
            friends.add(friend);
        } while (allRows.moveToNext()); //Next
    }
    return friends;
}

Please write some code how can i do this small change

share|improve this question
are you sure you will get year of all your friends, because friends can hide there birthday year? – mtariq Jan 1 at 7:04
@mtariq those have mentioned i am getting their b'days in form of mm/dd/yyyy – Sita Ram Jan 1 at 7:08

closed as not a real question by phwd, Brooks Moses, Stony, competent_tech, Brad Larson Jan 2 at 0:46

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can easily do that using joda library

    DateMidnight now = new DateMidnight();
    DateTime originalBirthday = new DateTime(1985, 1, 2,0,0);
    DateTime nextBirthday = new DateTime(now.getYear(), 1, 2,0,0);
    if(nextBirthday.isBefore(now))
        nextBirthday = nextBirthday.plusYears(1);

    int daysLeft = Days.daysBetween(now, nextBirthday).getDays();
    int age = Years.yearsBetween(originalBirthday, nextBirthday).getYears();

For android date4j is more performance optimized.

    DateTime now = DateTime.now(TimeZone.getDefault());
    DateTime originalBirthday = DateTime.forDateOnly(1985, 7, 12);

    DateTime nextBirthday = DateTime.forDateOnly(now.getYear(), 7, 12);

    if(nextBirthday.lt(now))
        nextBirthday = DateTime.forDateOnly(now.getYear() + 1, 7, 12);

    int daysLeft = now.numDaysFrom(nextBirthday);
    int newAge = nextBirthday.getYear() - originalBirthday.getYear();

To import the jar go to
project properties -> Java Build path -> libraries -> add jar/ add external jar.

share|improve this answer
I have downloaded joda library, please let me know where i have to add above code in my Android project & how to import library in eclipse – Sita Ram Jan 1 at 8:38
answer updated. kindly accept/upvote the answer if it is useful – mtariq Jan 1 at 10:00

Not the answer you're looking for? Browse other questions tagged or ask your own question.