2

我正在编写一个应用程序,我在其中获取 Facebook 好友列表及其头像、姓名和出生日期

但是我的一些朋友没有给出他们的生日日期,所以默认情况下我会得到 null 的位置,而不是 null,但现在想显示:Birthday Not Mentioned

请参阅下面我现有应用程序的屏幕截图:

喜欢:Vikas Rana 在 Facebook 上给了 DOB,而 AJay November 没有在 Facebook 上给 DOB

      > VikY
        January 1

      > AJamber
        Null

在这里,我想显示的地方为Null :未提及生日

好友列表.java:

       public View getView(int position, View convertView, ViewGroup parent) {


        JSONObject jsonObject = null;
        try {
            jsonObject = jsonArray.getJSONObject(position);
        } catch (JSONException e) {

        }

        FriendItem friendItem;

        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.listfb_friends, null);
            friendItem = new FriendItem();

            convertView.setTag(friendItem);
        } else {
            friendItem = (FriendItem) convertView.getTag();
        }

        friendItem.friendPicture = (ImageView) convertView
                .findViewById(R.id.picture);
        friendItem.friendName = (TextView) convertView
                .findViewById(R.id.name);
        friendItem.friendDob = (TextView) convertView
                .findViewById(R.id.dob);
        friendItem.friendLayout = (RelativeLayout) convertView
                .findViewById(R.id.friend_item);

        try {
            String uid = jsonObject.getString("uid");
            String url = jsonObject.getString("pic_square");
            friendItem.friendPicture.setImageBitmap(picturesGatherer
                    .getPicture(uid, url));
        } catch (JSONException e) {

            friendItem.friendName.setText("");
            friendItem.friendDob.setText("");
        }

        try {
            friendItem.friendName.setText(jsonObject.getString("name"));
            if(!friendItem.friendDob.equals(""))
            {
            friendItem.friendDob.setText(jsonObject.getString("birthday"));
            }
            else 
            {
            friendItem.friendDob.setText("Birthday Not Mentioned");
            }
        } catch (JSONException e) {

            friendItem.friendName.setText("");
            friendItem.friendDob.setText("");
        }

        listofshit.put(position, friendItem);
        return convertView;
    }

如果我正在编写这样的代码:

 try {
            friendItem.friendName.setText(jsonObject.getString("name"));
            friendItem.friendDob.setText(jsonObject.getString("birthday"));
        } catch (JSONException e) {

            friendItem.friendName.setText("");
            friendItem.friendDob.setText("");
        }
        finally
        {
            friendItem.friendDob.setText("Birthday Not Mentioned");
        }

所以我会为所有 Facebook 朋友的生日得到未提及的生日,即使对于他们也提到过

4

3 回答 3

2

试试这个。

    try{
    if(jsonObject.getString("birthday")!= null && !jsonObject.getString("birthday").equals("")){
          friendItem.friendDob.setText(jsonObject.getString("birthday"));
    }else{
         friendItem.friendDob.setText("Birthday Not Mentioned");
    }
}catch(JSONException e){
    e.printStackTrace();
}
于 2013-02-13T08:50:55.173 回答
1

你在哪里NullPointerException使用try-catch它。

我想你可能已经做到了。现在只需通过在catch block.


只需使用:-

try {
       friendItem.friendName.setText(jsonObject.getString("name"));
       friendItem.friendDob.setText(jsonObject.getString("birthday"));
    } 
catch (Exception e) {    
       friendItem.friendName.setText("Name");  // try it for now.
       friendItem.friendDob.setText("Birthday Not Mentioned"); // Have to be here.
    }
于 2013-02-13T05:32:21.647 回答
1

只需尝试以下代码:

            try 
        {
            friendItem.friendName.setText(jsonObject.getString("name"));
            friendItem.friendDob.setText(jsonObject.getString("birthday"));

            if(!(jsonObject.getString("birthday").equalsIgnoreCase("null")))
            {
            friendItem.friendDob.setText(jsonObject.getString("birthday"));
            }
            else
            {
            friendItem.friendDob.setText("Birthday Not Mentioned");
            }

        } catch (JSONException e) 
        {
            friendItem.friendName.setText("");
            friendItem.friendDob.setText("");
        }
        listofshit.put(position, friendItem);
        return convertView;
    }
于 2013-02-13T09:01:41.897 回答