-1

Facebookの友達の誕生日のリストをすべて取得するアプリを作成しました。次のようなものです。

リッキー

1990/02/13

しかし今、私はこのようなものを見せたい:

リッキー

1990年2月13日

コード:-

MyAdapter.java

 TextView name = (TextView) v.findViewById(R.id.label);
    name.setText(friend.getName());

    TextView bday = (TextView) v.findViewById(R.id.label2);
    if (!friend.getBday().trim().equals("")) {
        bday.setText(friend.getBday());
    } else {
        bday.setText("Not Mentioned");
    }

    return v;
}

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");
}

public List<MyFriend> getAllFriends() {
    return getFilteredFriends(null);
}

public List<MyFriend> getFilteredFriends(com.january.floogoo.Filter week) {
    return Main.db.getFriendsFilteredBy(week);
}

public List<Map<String, String>> getAllFriendsAsMap() {
    return getFilteredFriendsAsMap(null);
}

 public List<Map<String, String>> getFilteredFriendsAsMap(Filter filterBy) {
    List<MyFriend> friendList = Main.db.getFriendsFilteredBy(filterBy);

    List<Map<String, String>> list = new ArrayList<Map<String, String>>();
    for (MyFriend friend : friendList) {
        list.add(friend.getMap());
    }
    return list;
}

public void post(String receiver, String message) {
    if (isReady) {
        Bundle params = new Bundle();
        params.putString("message", message);

        mAsyncRunner.request(receiver + "/feed", params, "POST",
                new MyRequestListener(RequestType.FEED_POST));
    }
}

class MyAuthorizeListener extends BaseDialogListener {
    public void onComplete(Bundle values) {
        Log.i(TAG, "Authorization successfull");
        isReady = true;
        main.loadContents();
    }
}

class MyRequestListener extends BaseRequestListener {
    private RequestType type;

    public MyRequestListener(RequestType type) {
        this.type = type;
    }

    public void onComplete(final String response) {
        try {
            switch (type) {
            case FRIEND_LIST:
                 Log.d(TAG, "myfacebook.friendlist Response: "
                 + response.toString());
                myFriends.clear();
    JSONArray jarr = Util.parseJson(response).getJSONArray(
                        "data");
                for (int i = 0; i < jarr.length(); i++) {
                    JSONObject json = jarr.getJSONObject(i);
                    String fbID = json.getString("id");
                    String name = json.getString("name");
                    String bday = json.optString("birthday");
                    String pic = json.getString("picture");

                myFriends.add(new MyFriend(fbID, name, bday, pic));
                }
                main.notifyMain(Note.FRIENDLIST_RELOADED); 
                break;
            case FEED_POST:
                Log.d(TAG, "myfacebook.feedpost Response: "
                        + response.toString());
                break;
            default:
                break;
            }
        } catch (JSONException e) {
            Log.e(TAG, "JSONException: " + e.getMessage());
        } catch (FacebookError e) {
            Log.e(TAG, "FacebookError: " + e.getMessage());
        }
    }
}

MyFriend.java

    public class MyFriend {
private String fbID = " ";
private String name = " ";
private String bday = " "; // can be missing, be in form of mm/dd or
                           // mm/dd/yyyy
private String pic = " ";
private String bdayMessage = " ";
private boolean isAutoPost = false;

public MyFriend() {

}
4

2 に答える 2

0

参照:Javaを使用した日付形式の変換

あなたはこのようなものが必要です:

try {
  DateFormat df1 = new SimpleDateFormat("MM/dd/yyyy");
  DateFormat df2 = new SimpleDateFormat("MMM dd, yyyy");
  return df2.format(df1.parse(input));
}
catch (ParseException e) {
  return null;
}

========================================これを試してください:

    TextView bday = (TextView) v.findViewById(R.id.label2);
    if (!friend.getBday().trim().equals("")) {

        try {
            // If this line is in loop you can declare thie two SimpleDateFormat //before loop
            SimpleDateFormat df1 = new SimpleDateFormat("MM/dd/yyyy");
            SimpleDateFormat df2 = new SimpleDateFormat("MMMM dd, yyyy");

            bday.setText(df2.format(df1.parse(friend.getBday().trim())));

            Log.i("Nimish", df2.format(df1.parse("12/13/1990")));

        } catch (ParseException e) {
            bday.setText("Not Mentioned");
            Log.i("Nimish", "" + e);
        }

    } else {
        bday.setText("Not Mentioned");
    }

出力:01-04 17:51:29.299:I / Nimish(5042):1990年12月13日

于 2013-01-04T10:41:51.113 に答える
0

SimpleDateFormateあなたの日付をフォーマットするために使用してみてください:

if (!friend.getBday().trim().equals("")) {
    SimpleDateFormat curFormater = new SimpleDateFormat("dd/MM/yyyy");   
    Date dateObj = curFormater.parse(bday.setText(friend.getBday()));   
    SimpleDateFormat postFormater = new SimpleDateFormat("MMMM dd, yyyy");   
    String newDateStr = postFormater.format(dateObj);
    bday.setText(newDateStr); // <--------- Set your date after formatting.
} else {
    bday.setText("Not Mentioned");
}
于 2013-01-04T10:32:49.007 に答える