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